[tryton-debian-vcs] tryton-modules-health-crypto branch debian updated. debian/2.8.1-1-12-g20ebd34

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Mon Mar 28 18:26:32 UTC 2016


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-health-crypto.git;a=commitdiff;h=debian/2.8.1-1-12-g20ebd34

commit 20ebd3473da32a9eac837dc79f522f6bf1a49aa0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Mar 28 01:27:38 2016 +0200

    Releasing debian version 3.0.1-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 3bdaeaa..b75bf04 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-health-crypto (3.0.1-1) unstable; urgency=medium
+
+  * Wrapping and sorting control files (wrap-and-sort -bts).
+  * Adapting section naming in gbp.conf to current git-buildpackage.
+  * Improving description why we can not run the module test suites.
+  * Updating copyright years.
+  * Merging upstream version 3.0.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Mon, 28 Mar 2016 01:27:38 +0200
+
 tryton-modules-health-crypto (2.8.1-1) unstable; urgency=medium
 
   * Initial packaging.
commit 066f575231dab794a1a061ad7ecdec12a81786a9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Mar 28 01:27:37 2016 +0200

    Merging upstream version 3.0.1.

diff --git a/PKG-INFO b/PKG-INFO
index 4fd38f7..d679296 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_health_crypto
-Version: 2.8.1
+Version: 3.0.1
 Summary: GNU Health Cryptography Module
 Home-page: http://health.gnu.org/
 Author: GNU Solidario
diff --git a/README b/README
index 4d62bf1..45f0f01 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-#    Copyright (C) 2008-2015 Luis Falcon
+#    Copyright (C) 2008-2016 Luis Falcon
 
 #    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/__init__.py b/__init__.py
index 8c6388a..7592523 100644
--- a/__init__.py
+++ b/__init__.py
@@ -2,8 +2,8 @@
 ##############################################################################
 #
 #    GNU Health: The Free Health and Hospital Information System
-#    Copyright (C) 2008-2015 Luis Falcon <falcon at gnu.org>
-#    Copyright (C) 2011-2015 GNU Solidario <health at gnusolidario.org>
+#    Copyright (C) 2008-2016 Luis Falcon <falcon at gnu.org>
+#    Copyright (C) 2011-2016 GNU Solidario <health at gnusolidario.org>
 #
 #
 #    This program is free software: you can redistribute it and/or modify
diff --git a/health_crypto.py b/health_crypto.py
index 18049a9..b1b9931 100644
--- a/health_crypto.py
+++ b/health_crypto.py
@@ -2,8 +2,8 @@
 ##############################################################################
 #
 #    GNU Health: The Free Health and Hospital Information System
-#    Copyright (C) 2008-2015 Luis Falcon <lfalcon at gnusolidario.org>
-#    Copyright (C) 2011-2015 GNU Solidario <health at gnusolidario.org>
+#    Copyright (C) 2008-2016 Luis Falcon <lfalcon at gnusolidario.org>
+#    Copyright (C) 2011-2016 GNU Solidario <health at gnusolidario.org>
 #
 #
 #    This program is free software: you can redistribute it and/or modify
@@ -25,7 +25,7 @@ from trytond.transaction import Transaction
 from trytond.rpc import RPC
 from trytond.pool import Pool
 from trytond.wizard import Wizard, StateAction, StateView, Button
-from trytond.pyson import Eval, Not, Bool, PYSONEncoder, Equal, And
+from trytond.pyson import Eval, Not, Bool, PYSONEncoder, Equal, And, Or
 import hashlib
 import json
 
@@ -57,10 +57,11 @@ class PatientPrescriptionOrder(ModelSQL, ModelView):
 
     document_digest = fields.Char('Digest', readonly=True,
         help="Original Document Digest")
-    
+
     state = fields.Selection([
         ('draft', 'Draft'),
-        ('done', 'Done'),
+        ('done', 'Done'),        
+        ('validated', 'Validated'),        
         ], 'State', readonly=True, sort=False)
 
 
@@ -98,8 +99,13 @@ class PatientPrescriptionOrder(ModelSQL, ModelView):
     def __setup__(cls):
         cls._buttons.update({
             'generate_prescription': {
-                'invisible': Equal(Eval('state'), 'done'),
+                'invisible': Equal(Eval('state'), 'validated'),
             },
+            'create_prescription': {
+                'invisible': Or(Equal(Eval('state'), 'done'),
+                    Equal(Eval('state'), 'validated'))
+            },
+
             })
         ''' Allow calling the set_signature method via RPC '''
         cls.__rpc__.update({
@@ -120,7 +126,7 @@ class PatientPrescriptionOrder(ModelSQL, ModelView):
         cls.write(prescriptions, {
             'serializer': serial_doc,
             'document_digest': HealthCrypto().gen_hash(serial_doc),
-            'state': 'done',})
+            'state': 'validated',})
 
 
     @classmethod
@@ -183,7 +189,16 @@ class PatientPrescriptionOrder(ModelSQL, ModelView):
             result = serial_doc
             
         return result
-        
+ 
+    # Hide the group holding validation information when state is 
+    # not validated
+    
+    @classmethod
+    def view_attributes(cls):
+        return [('//group[@id="prescription_digest"]', 'states', {
+                'invisible': Not(Eval('state') == 'validated'),
+                })]
+       
 
 class BirthCertificate(ModelSQL, ModelView):
     
@@ -304,6 +319,13 @@ class BirthCertificate(ModelSQL, ModelView):
             
         return result
 
+    # Hide the group holding all the digital signature until signed
+        
+    @classmethod
+    def view_attributes(cls):
+        return [('//group[@id="group_current_string"]', 'states', {
+                'invisible': ~Eval('digest_status'),
+                })]
 
 class DeathCertificate(ModelSQL, ModelView):
     
@@ -436,6 +458,14 @@ class DeathCertificate(ModelSQL, ModelView):
             
         return result
 
+    # Hide the group holding all the digital signature until signed
+        
+    @classmethod
+    def view_attributes(cls):
+        return [('//group[@id="group_current_string"]', 'states', {
+                'invisible': ~Eval('digest_status'),
+                })]
+
 class PatientEvaluation(ModelSQL, ModelView):
     __name__ = 'gnuhealth.patient.evaluation'
     
@@ -645,3 +675,12 @@ class PatientEvaluation(ModelSQL, ModelView):
             result = serial_doc
             
         return result
+    # Hide the group holding all the digital signature until signed
+        
+    @classmethod
+    def view_attributes(cls):
+        return [('//group[@id="group_digital_signature"]', 'states', {
+                'invisible': ~Eval('digital_signature')}),
+                ('//group[@id="group_current_string"]', 'states', {
+                'invisible': ~Eval('digest_status'),
+                })]
diff --git a/locale/el_GR.po b/locale/ar.po
similarity index 61%
copy from locale/el_GR.po
copy to locale/ar.po
index 165bcaa..8bcc19a 100644
--- a/locale/el_GR.po
+++ b/locale/ar.po
@@ -1,280 +1,276 @@
-# 
-# Translators:
-# kvisitor <kvisitor at gnugr.org>, 2015
+# Nab3a <asn09 at aub.edu.lb>, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/GNU_Health/language/el/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"PO-Revision-Date: 2016-01-08 12:00+0000\n"
+"Last-Translator: Nab3a <asn09 at aub.edu.lb>\n"
+"Language: ar\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1452254409.0\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr "الهاش الحالي"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr "مٌعدل"
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr "مٌلخص"
 
 msgctxt "field:gnuhealth.birth_certificate,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr "سلسلة المستند "
 
 msgctxt "field:gnuhealth.birth_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr "المستند الحالي"
 
 msgctxt "field:gnuhealth.death_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr "الهاش الحالي"
 
 msgctxt "field:gnuhealth.death_certificate,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr "مٌعدل"
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr "مٌلخص"
 
 msgctxt "field:gnuhealth.death_certificate,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr "سلسلة المستند "
 
 msgctxt "field:gnuhealth.death_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr "المستند الحالي"
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr "الهاش الحالي"
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr "مٌعدل"
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr "مٌلخص"
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr "سلسلة المستند "
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr "المستند الحالي"
 
 msgctxt "field:gnuhealth.prescription.order,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr "الهاش الحالي"
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr "مٌعدل"
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr "مٌلخص"
 
 msgctxt "field:gnuhealth.prescription.order,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr "سلسلة المستند "
 
 msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
-
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Κατάσταση"
+msgstr "المستند الحالي"
 
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
 msgstr ""
+"هذا الحقل سوف يٌعبأ عندما يكون قد تم تغيير أجزاء من المستند الأصلي.\n"
+"رجاءً لاحظ أنه, فقط الحقول المحددة سوف يتم التحقق منها."
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr "مٌلخص المستند الأصلي"
 
 msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
 msgstr ""
+"هذا الحقل سوف يٌعبأ عندما يكون قد تم تغيير أجزاء من المستند الأصلي.\n"
+"رجاءً لاحظ أنه, فقط الحقول المحددة سوف يتم التحقق منها."
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr "مٌلخص المستند الأصلي"
 
 msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
 msgstr ""
+"هذا الحقل سوف يٌعبأ عندما يكون قد تم تغيير أجزاء من المستند الأصلي.\n"
+"رجاءً لاحظ أنه, فقط الحقول المحددة سوف يتم التحقق منها."
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr "مٌلخص المستند الأصلي"
 
 msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
 msgstr ""
+"هذا الحقل سوف يٌعبأ عندما يكون قد تم تغيير أجزاء من المستند الأصلي.\n"
+"رجاءً لاحظ أنه, فقط الحقول المحددة سوف يتم التحقق منها."
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Έγινε"
+msgstr "مٌلخص المستند الأصلي"
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Πρόχειρο/ προσχέδιο"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
-msgstr ""
+msgstr "السلسلة النصية الحالية / المبدلة"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr "التحقق من المستند"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr "Δημιουργία"
+msgstr "توليد"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
-msgstr ""
+msgstr "توليد شهادة؟ "
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate the certificate"
-msgstr ""
+msgstr "توليد الشهادة"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Hashes"
-msgstr ""
+msgstr "الهاشات"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Original String"
-msgstr ""
+msgstr "السلسلة النصية الأصلية"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Altered / current String"
-msgstr ""
+msgstr "السلسلة النصية الحالية / المبدلة"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr "التحقق من المستند"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr "Δημιουργία"
+msgstr "توليد"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
-msgstr ""
+msgstr "توليد شهادة ؟ "
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate the certificate"
-msgstr ""
+msgstr "توليد الشهادة"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Hashes"
-msgstr ""
+msgstr "الهاشات"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Original String"
-msgstr ""
+msgstr "السلسلة النصية الأصلية"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Altered / current String"
-msgstr ""
+msgstr "السلسلة النصية الحالية / المبدلة"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close Evaluation"
-msgstr ""
+msgstr "أغلق التقييم"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close and Sign evaluation ?"
-msgstr ""
+msgstr "إغلاق و توقيع التقييم؟ "
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr "التوقيع الرقمي"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr "التحقق من المستند"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Hashes"
-msgstr ""
+msgstr "الهاشات"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Original String"
-msgstr ""
+msgstr "السلسلة النصية الأصلية"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Sign this patient evaluation"
-msgstr ""
+msgstr "وقع تقييم المريض هذا"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Validation"
-msgstr ""
+msgstr "التحقق"
 
 msgctxt "view:gnuhealth.prescription.order:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr "التحقق من المستند"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Δημιουργία"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "Να δημιουργηθεί συνταγή;"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Υπογράψτε τη συνταγή"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/zh_CN.po b/locale/de_AT.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/de_AT.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/de_AT.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/el_GR.po b/locale/el_GR.po
index 165bcaa..4496d4f 100644
--- a/locale/el_GR.po
+++ b/locale/el_GR.po
@@ -1,119 +1,102 @@
-# 
-# Translators:
-# kvisitor <kvisitor at gnugr.org>, 2015
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/GNU_Health/language/el/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_current:"
 msgid "Current Hash"
-msgstr "Το παρόν hash"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr "Άλλαξε"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
-msgstr "Περίληψη"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer:"
 msgid "Doc String"
-msgstr "Συμβολοσειρά κειμένου"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
-msgstr "Το παρόν έγγραφο"
-
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Κατάσταση"
+msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
@@ -123,7 +106,7 @@ msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
@@ -133,7 +116,7 @@ msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
@@ -143,7 +126,7 @@ msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
+msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
@@ -153,15 +136,11 @@ msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
-msgstr "Περίληψη πρωτότυπου εγγράφου"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Έγινε"
+msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Πρόχειρο/ προσχέδιο"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -169,15 +148,15 @@ msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr "Δημιουργία"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
@@ -201,15 +180,15 @@ msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr "Δημιουργία"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
@@ -241,11 +220,11 @@ msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Ψηφιακή υπογραφή"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Hashes"
@@ -265,16 +244,16 @@ msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
 msgid "Document validation"
-msgstr "Επικύρωση εγγράφου"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Δημιουργία"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "Να δημιουργηθεί συνταγή;"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Υπογράψτε τη συνταγή"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/zh_CN.po b/locale/en_GB.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/en_GB.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/en_GB.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/zh_CN.po b/locale/es_AR.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/es_AR.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/es_AR.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/es_ES.po b/locale/es_EC.po
similarity index 70%
copy from locale/es_ES.po
copy to locale/es_EC.po
index 1824bd7..57358fd 100644
--- a/locale/es_ES.po
+++ b/locale/es_EC.po
@@ -1,20 +1,14 @@
-# 
-# Translators:
-# Bruno Villasanti <bvillasanti at thymbra.com>, 2015
-# Luis Falcon <lfalcon at gnusolidario.org>, 2014
+# Fabyc <fabianc7 at gmail.com>, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-30 22:51+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/GNU_Health/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"PO-Revision-Date: 2016-01-08 20:07+0000\n"
+"Last-Translator: Fabyc <fabianc7 at gmail.com>\n"
+"Language: es_EC\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n !=1);\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1452283643.0\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -26,15 +20,15 @@ msgstr "Alterado"
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr "Resumen"
 
 msgctxt "field:gnuhealth.birth_certificate,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr "Cadena doc"
 
 msgctxt "field:gnuhealth.birth_certificate,serializer_current:"
 msgid "Current Doc"
@@ -50,15 +44,15 @@ msgstr "Alterado"
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr "Resumen"
 
 msgctxt "field:gnuhealth.death_certificate,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr "Cadena doc"
 
 msgctxt "field:gnuhealth.death_certificate,serializer_current:"
 msgid "Current Doc"
@@ -70,19 +64,19 @@ msgstr "Hash actual"
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr "Alterada"
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr "Resumen"
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr "Cadena doc"
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer_current:"
 msgid "Current Doc"
@@ -94,87 +88,91 @@ msgstr "Hash actual"
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr "Alterada"
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr "Resumen"
 
 msgctxt "field:gnuhealth.prescription.order,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr "Cadena doc"
 
 msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr "Doc. actual"
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Estado"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
+"Este campo se activará siempre que el documento original principal se haya "
+"alterado. Recuerde que el proceso de verificación se realiza únicamente en "
+"los campos seleccionados."
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr "Resumen del documento original"
 
 msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
+"Este campo se activará siempre que el documento original principal se haya "
+"alterado. Recuerde que el proceso de verificación se realiza únicamente en "
+"los campos seleccionados."
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr "Resumen del documento original"
 
 msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
+"Este campo se activará siempre que el documento original principal se haya "
+"alterado. Recuerde que el proceso de verificación se realiza únicamente en "
+"los campos seleccionados."
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr "Resumen del documento original"
 
 msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
+"Este campo se activará siempre que el documento original principal se haya "
+"alterado. Recuerde que el proceso de verificación se realiza únicamente en "
+"los campos seleccionados."
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
 msgstr "Hash del documento original"
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Hecho"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Borrador"
+msgid "Validated"
+msgstr "Validado"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr "Cadena actual/alterada"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr "Validación de documento"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
@@ -186,7 +184,7 @@ msgstr "¿Generar certificado?"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate the certificate"
-msgstr "Generar certificado"
+msgstr "Generar el certificado"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Hashes"
@@ -194,19 +192,19 @@ msgstr "Hashes"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr "Cadena original"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr "Cadena actual/alterada"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr "Validación de documento"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
@@ -218,7 +216,7 @@ msgstr "¿Generar certificado?"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate the certificate"
-msgstr "Generar certificado"
+msgstr "Generar el certificado"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Hashes"
@@ -226,15 +224,15 @@ msgstr "Hashes"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr "Cadena de caracteres"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr "Cadena actual/alterada"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close Evaluation"
-msgstr "Cerrar Evaluación"
+msgstr "Cerrar evaluación"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close and Sign evaluation ?"
@@ -242,11 +240,11 @@ msgstr "¿Cerrar y Firmar la evaluación?"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr "Firma digital"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr "Validación de documento"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Hashes"
@@ -254,7 +252,7 @@ msgstr "Hashes"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr "Cadena original"
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Sign this patient evaluation"
@@ -266,16 +264,16 @@ msgstr "Validación"
 
 msgctxt "view:gnuhealth.prescription.order:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr "Validación de documento"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Generar"
+msgid "Generate Validation"
+msgstr "Generar validación"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "¿Generar receta?"
+msgid "Generate Validation ?"
+msgstr "¿Desea generar la validación?"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Firmar la receta"
+msgid "Generate the prescription validation code"
+msgstr "Generar código de validación de la prescripción"
diff --git a/locale/es_ES.po b/locale/es_ES.po
index 1824bd7..4496d4f 100644
--- a/locale/es_ES.po
+++ b/locale/es_ES.po
@@ -1,281 +1,259 @@
-# 
-# Translators:
-# Bruno Villasanti <bvillasanti at thymbra.com>, 2015
-# Luis Falcon <lfalcon at gnusolidario.org>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-30 22:51+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/GNU_Health/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Hash actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Doc. actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Hash actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Doc. actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_current:"
 msgid "Current Hash"
-msgstr "Hash actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer_current:"
 msgid "Current Doc"
-msgstr "Doc. actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_current:"
 msgid "Current Hash"
-msgstr "Hash actual"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr "Alterado"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
-msgstr "MD"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer:"
 msgid "Doc String"
-msgstr "Cadena Doc"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
-msgstr "Doc. actual"
-
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Estado"
+msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
+msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo se activará siempre que el documento original se haya alterado. Recuerde que el proceso de verificación se realiza únicamente en los campos seleccionados."
+msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
-msgstr "Hash del documento original"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Hecho"
+msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Borrador"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr "Generar"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
-msgstr "¿Generar certificado?"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate the certificate"
-msgstr "Generar certificado"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Hashes"
-msgstr "Hashes"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr "Generar"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
-msgstr "¿Generar certificado?"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate the certificate"
-msgstr "Generar certificado"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Hashes"
-msgstr "Hashes"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Altered / current String"
-msgstr "Cadena Actual/Alterada"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close Evaluation"
-msgstr "Cerrar Evaluación"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Close and Sign evaluation ?"
-msgstr "¿Cerrar y Firmar la evaluación?"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Firma Digital"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Hashes"
-msgstr "Hashes"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Original String"
-msgstr "Cadena Original"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Sign this patient evaluation"
-msgstr "Firmar esta evaluación del paciente"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Validation"
-msgstr "Validación"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
 msgid "Document validation"
-msgstr "Validación"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Generar"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "¿Generar receta?"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Firmar la receta"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/zh_CN.po b/locale/es_MX.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/es_MX.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/es_MX.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/zh_CN.po b/locale/es_PE.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/es_PE.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/es_PE.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index 706f7ab..4496d4f 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -1,19 +1,6 @@
-# 
-# Translators:
-# Marie-Andrée Coulombe <coulombe.ma at gmail.com>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: French (France) (http://www.transifex.com/projects/p/GNU_Health/language/fr_FR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr_FR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -25,7 +12,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
@@ -49,7 +36,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
@@ -73,7 +60,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
@@ -97,7 +84,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
@@ -111,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Etat"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -156,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Fait"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Brouillon"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -169,7 +148,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
@@ -177,7 +156,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr "Générer"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
@@ -201,7 +180,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
@@ -209,7 +188,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr "Générer"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
@@ -241,7 +220,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Signature électronique"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
@@ -268,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Générer"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "Générer la prescription?"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Signez la prescription"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/it_IT.po b/locale/it_IT.po
index f014356..4496d4f 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -1,170 +1,146 @@
-# 
-# Translators:
-# Bruno <bruno.oddo at libero.it>, 2014
-# rob.paoli <rob.paoli at gmail.com>, 2014
-# rob.paoli <rob.paoli at gmail.com>, 2014
-# Teodoro Santoni <asbrasbra at gmail.com>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Italian (http://www.transifex.com/projects/p/GNU_Health/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Hash Corrente"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digest_status:"
 msgid "Altered"
-msgstr "Alterato"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,document_digest:"
 msgid "Digest"
-msgstr "Sommario"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer:"
 msgid "Doc String"
-msgstr "Stringa Documento"
+msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Documento Attuale"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_current:"
 msgid "Current Hash"
-msgstr "Hash Corrente"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_status:"
 msgid "Altered"
-msgstr "Alterato"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,document_digest:"
 msgid "Digest"
-msgstr "Sommario"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer:"
 msgid "Doc String"
-msgstr "Stringa Documento"
+msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,serializer_current:"
 msgid "Current Doc"
-msgstr "Documento Attuale"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_current:"
 msgid "Current Hash"
-msgstr "Hash Corrente"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr "Alterato"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,document_digest:"
 msgid "Digest"
-msgstr "Sommario"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer:"
 msgid "Doc String"
-msgstr "Stringa Documento"
+msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,serializer_current:"
 msgid "Current Doc"
-msgstr "Documento Attuale"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_current:"
 msgid "Current Hash"
-msgstr "Hash Corrente"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr "Alterato"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,document_digest:"
 msgid "Digest"
-msgstr "Sommario"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer:"
 msgid "Doc String"
-msgstr "Stringa Documento"
+msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
-msgstr "Documento Attuale"
-
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Stato"
+msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Questo campo sarà impostato quando parti del documento principale originale sono state modificate. Prego notare che la verifica è effettuata solo sui campi selezionati"
+msgstr ""
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Sommario del documento originale"
+msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Questo campo sarà impostato quando parti del documento principale originale sono state modificate. Prego notare che la verifica è effettuata solo sui campi selezionati"
+msgstr ""
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
-msgstr "Sommario del documento originale"
+msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Questo campo sarà impostato quando parti del documento principale originale sono state modificate. Prego notare che la verifica è effettuata solo sui campi selezionati"
+msgstr ""
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
-msgstr "Sommario del documento originale"
+msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Questo campo sarà impostato quando parti del documento principale originale sono state modificate. Prego notare che la verifica è effettuata solo sui campi selezionati"
+msgstr ""
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
-msgstr "Sommario del documento originale"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Fatto"
+msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Bozza"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -172,15 +148,15 @@ msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Document validation"
-msgstr "Validazione del documento"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr "Generare"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
@@ -204,15 +180,15 @@ msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Document validation"
-msgstr "Validazione del documento"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr "Generare"
+msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
@@ -244,11 +220,11 @@ msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Digital Signature"
-msgstr "Firma Digitale"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Document validation"
-msgstr "Validazione del documento"
+msgstr ""
 
 msgctxt "view:gnuhealth.patient.evaluation:"
 msgid "Hashes"
@@ -268,16 +244,16 @@ msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
 msgid "Document validation"
-msgstr "Validazione del documento"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Generare"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "Generare Ricetta ?"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Firmare la ricetta"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/ja_JP.po b/locale/ja_JP.po
index 2c3652d..29847fd 100644
--- a/locale/ja_JP.po
+++ b/locale/ja_JP.po
@@ -9,15 +9,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: GNU Health\n"
 "Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
+"POT-Creation-Date: 2016-01-07 20:09+0000\n"
 "PO-Revision-Date: 2015-01-26 16:57+0000\n"
 "Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Japanese (http://www.transifex.com/projects/p/GNU_Health/language/ja/)\n"
+"Language-Team: Japanese "
+"(http://www.transifex.com/projects/p/GNU_Health/language/ja/)\n"
+"Language: ja_JP\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Translate Toolkit 1.10.0\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -115,15 +117,12 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr "現在の文書"
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "州"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
+msgstr ""
+"メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
@@ -133,7 +132,8 @@ msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
+msgstr ""
+"メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
@@ -143,7 +143,8 @@ msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
+msgstr ""
+"メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
@@ -153,19 +154,16 @@ msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
+msgstr ""
+"メインとなるオリジナル文書の一部分が変更される度に、このフィールドが設定されます。検証は選択されたフィールド上でのみ行われますのでご注意ください。"
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
 msgstr "元のドキュメントのダイジェスト"
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "実施済み"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "ドラフト"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -272,13 +270,37 @@ msgid "Document validation"
 msgstr "ドキュメントの確認"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "作成"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "処方箋を作成しますか?"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "処方箋にサインしてください"
+msgid "Generate the prescription validation code"
+msgstr ""
+
+#~ msgctxt "field:gnuhealth.prescription.order,state:"
+#~ msgid "State"
+#~ msgstr "州"
+
+#~ msgctxt "selection:gnuhealth.prescription.order,state:"
+#~ msgid "Done"
+#~ msgstr "実施済み"
+
+#~ msgctxt "selection:gnuhealth.prescription.order,state:"
+#~ msgid "Draft"
+#~ msgstr "ドラフト"
+
+#~ msgctxt "view:gnuhealth.prescription.order:"
+#~ msgid "Generate"
+#~ msgstr "作成"
+
+#~ msgctxt "view:gnuhealth.prescription.order:"
+#~ msgid "Generate prescription ?"
+#~ msgstr "処方箋を作成しますか?"
+
+#~ msgctxt "view:gnuhealth.prescription.order:"
+#~ msgid "Sign the prescription"
+#~ msgstr "処方箋にサインしてください"
diff --git a/locale/zh_CN.po b/locale/kn.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/kn.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/kn.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/zh_CN.po b/locale/lo.po
similarity index 88%
copy from locale/zh_CN.po
copy to locale/lo.po
index 128f270..8eda6a6 100644
--- a/locale/zh_CN.po
+++ b/locale/lo.po
@@ -1,18 +1,14 @@
-# 
-# Translators:
+# anousak <anousak at gmail.com>, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"PO-Revision-Date: 2016-01-08 02:56+0000\n"
+"Last-Translator: anousak <anousak at gmail.com>\n"
+"Language: lo\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1452221812.0\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -20,7 +16,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.birth_certificate,digest_status:"
 msgid "Altered"
-msgstr ""
+msgstr "ປ່ຽນແປງ"
 
 msgctxt "field:gnuhealth.birth_certificate,digital_signature:"
 msgid "Digital Signature"
@@ -44,7 +40,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.death_certificate,digest_status:"
 msgid "Altered"
-msgstr ""
+msgstr "ປ່ຽນແປງ"
 
 msgctxt "field:gnuhealth.death_certificate,digital_signature:"
 msgid "Digital Signature"
@@ -68,7 +64,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.patient.evaluation,digest_status:"
 msgid "Altered"
-msgstr ""
+msgstr "ປ່ຽນແປງ"
 
 msgctxt "field:gnuhealth.patient.evaluation,digital_signature:"
 msgid "Digital Signature"
@@ -92,7 +88,7 @@ msgstr ""
 
 msgctxt "field:gnuhealth.prescription.order,digest_status:"
 msgid "Altered"
-msgstr ""
+msgstr "ປ່ຽນແປງ"
 
 msgctxt "field:gnuhealth.prescription.order,digital_signature:"
 msgid "Digital Signature"
@@ -110,10 +106,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +147,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -176,7 +164,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate"
-msgstr ""
+msgstr "ສ້າງ"
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Generate certificate ?"
@@ -208,7 +196,7 @@ msgstr ""
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate"
-msgstr ""
+msgstr "ສ້າງ"
 
 msgctxt "view:gnuhealth.death_certificate:"
 msgid "Generate certificate ?"
@@ -267,13 +255,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index a76a391..62ab769 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -1,19 +1,14 @@
-# 
-# Translators:
-# Roberto Vasconcelos Novaes <rvnovaes at gmail.com>, 2014
+# rvnovaes <rvnovaes at gmail.com>, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/GNU_Health/language/pt_BR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-12-28 00:01+0000\n"
+"Last-Translator: rvnovaes <rvnovaes at gmail.com>\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1451260884.0\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -111,15 +106,14 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr "Doc Atual"
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "Estado"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo será usado sempre que partess do documento original principal tiverem sido alteradas. Favor observar que a verificação é feita apenas em campos selecionados."
+msgstr ""
+"Este campo será usado sempre que partess do documento original principal "
+"tiverem sido alteradas. Favor observar que a verificação é feita apenas em "
+"campos selecionados."
 
 msgctxt "help:gnuhealth.birth_certificate,document_digest:"
 msgid "Original Document Digest"
@@ -129,7 +123,10 @@ msgctxt "help:gnuhealth.death_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo será usado sempre que partess do documento original principal tiverem sido alteradas. Favor observar que a verificação é feita apenas em campos selecionados."
+msgstr ""
+"Este campo será usado sempre que partess do documento original principal "
+"tiverem sido alteradas. Favor observar que a verificação é feita apenas em "
+"campos selecionados."
 
 msgctxt "help:gnuhealth.death_certificate,document_digest:"
 msgid "Original Document Digest"
@@ -139,7 +136,10 @@ msgctxt "help:gnuhealth.patient.evaluation,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo será usado sempre que partess do documento original principal tiverem sido alteradas. Favor observar que a verificação é feita apenas em campos selecionados."
+msgstr ""
+"Este campo será usado sempre que partess do documento original principal "
+"tiverem sido alteradas. Favor observar que a verificação é feita apenas em "
+"campos selecionados."
 
 msgctxt "help:gnuhealth.patient.evaluation,document_digest:"
 msgid "Original Document Digest"
@@ -149,19 +149,18 @@ msgctxt "help:gnuhealth.prescription.order,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
 " changed. Please note that the verification is done only on selected fields."
-msgstr "Este campo será usado sempre que partess do documento original principal tiverem sido alteradas. Favor observar que a verificação é feita apenas em campos selecionados."
+msgstr ""
+"Este campo será usado sempre que partess do documento original principal "
+"tiverem sido alteradas. Favor observar que a verificação é feita apenas em "
+"campos selecionados."
 
 msgctxt "help:gnuhealth.prescription.order,document_digest:"
 msgid "Original Document Digest"
 msgstr "Digest original do documento"
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "Feito"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "Rascunho"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -268,13 +267,13 @@ msgid "Document validation"
 msgstr "Validação do documento"
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
-msgstr "Gerar"
+msgid "Generate Validation"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
-msgstr "Gerar prescrição?"
+msgid "Generate Validation ?"
+msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
-msgstr "Assinar a prescrição"
+msgid "Generate the prescription validation code"
+msgstr ""
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index 128f270..4496d4f 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -1,18 +1,6 @@
-# 
-# Translators:
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2015-01-26 16:57+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.birth_certificate,digest_current:"
 msgid "Current Hash"
@@ -110,10 +98,6 @@ msgctxt "field:gnuhealth.prescription.order,serializer_current:"
 msgid "Current Doc"
 msgstr ""
 
-msgctxt "field:gnuhealth.prescription.order,state:"
-msgid "State"
-msgstr "声明"
-
 msgctxt "help:gnuhealth.birth_certificate,digest_status:"
 msgid ""
 "This field will be set whenever parts of the main original document has been"
@@ -155,12 +139,8 @@ msgid "Original Document Digest"
 msgstr ""
 
 msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Done"
-msgstr "完成"
-
-msgctxt "selection:gnuhealth.prescription.order,state:"
-msgid "Draft"
-msgstr "草稿"
+msgid "Validated"
+msgstr ""
 
 msgctxt "view:gnuhealth.birth_certificate:"
 msgid "Altered / current String"
@@ -267,13 +247,13 @@ msgid "Document validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate"
+msgid "Generate Validation"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Generate prescription ?"
+msgid "Generate Validation ?"
 msgstr ""
 
 msgctxt "view:gnuhealth.prescription.order:"
-msgid "Sign the prescription"
+msgid "Generate the prescription validation code"
 msgstr ""
diff --git a/setup.py b/setup.py
index af8c981..9e9aa0a 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ info = dict(config.items('tryton'))
 for key in ('depends', 'extras_depend', 'xml'):
     if key in info:
         info[key] = info[key].strip().splitlines()
-major_version, minor_version = 3, 4
+major_version, minor_version = 3, 8
 
 requires = []
 
diff --git a/tryton.cfg b/tryton.cfg
index c9391e8..d2df02b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.1
+version=3.0.1
 depends:
     health
 xml:
diff --git a/trytond_health_crypto.egg-info/PKG-INFO b/trytond_health_crypto.egg-info/PKG-INFO
index 9082235..8057f23 100644
--- a/trytond_health_crypto.egg-info/PKG-INFO
+++ b/trytond_health_crypto.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-health-crypto
-Version: 2.8.1
+Version: 3.0.1
 Summary: GNU Health Cryptography Module
 Home-page: http://health.gnu.org/
 Author: GNU Solidario
diff --git a/trytond_health_crypto.egg-info/SOURCES.txt b/trytond_health_crypto.egg-info/SOURCES.txt
index 4e8f852..e89bcb6 100644
--- a/trytond_health_crypto.egg-info/SOURCES.txt
+++ b/trytond_health_crypto.egg-info/SOURCES.txt
@@ -8,22 +8,40 @@ setup.py
 ./health_crypto_view.xml
 ./tryton.cfg
 ./doc/index.rst
+./locale/ar.po
+./locale/de_AT.po
 ./locale/el_GR.po
+./locale/en_GB.po
+./locale/es_AR.po
+./locale/es_EC.po
 ./locale/es_ES.po
+./locale/es_MX.po
+./locale/es_PE.po
 ./locale/fr_FR.po
 ./locale/it_IT.po
 ./locale/ja_JP.po
+./locale/kn.po
+./locale/lo.po
 ./locale/pt_BR.po
 ./locale/zh_CN.po
 ./view/gnuhealth_birth_certificate_form.xml
 ./view/gnuhealth_death_certificate_form.xml
 ./view/gnuhealth_patient_evaluation_form.xml
 ./view/prescription_form.xml
+locale/ar.po
+locale/de_AT.po
 locale/el_GR.po
+locale/en_GB.po
+locale/es_AR.po
+locale/es_EC.po
 locale/es_ES.po
+locale/es_MX.po
+locale/es_PE.po
 locale/fr_FR.po
 locale/it_IT.po
 locale/ja_JP.po
+locale/kn.po
+locale/lo.po
 locale/pt_BR.po
 locale/zh_CN.po
 trytond_health_crypto.egg-info/PKG-INFO
diff --git a/trytond_health_crypto.egg-info/requires.txt b/trytond_health_crypto.egg-info/requires.txt
index fcccb26..b3a667a 100644
--- a/trytond_health_crypto.egg-info/requires.txt
+++ b/trytond_health_crypto.egg-info/requires.txt
@@ -1,2 +1,2 @@
-trytond_health == 2.8.1
-trytond >= 3.4, < 3.5
+trytond_health == 3.0.1
+trytond >= 3.8, < 3.9
diff --git a/view/gnuhealth_birth_certificate_form.xml b/view/gnuhealth_birth_certificate_form.xml
index c8a632a..24e6806 100644
--- a/view/gnuhealth_birth_certificate_form.xml
+++ b/view/gnuhealth_birth_certificate_form.xml
@@ -13,7 +13,7 @@
                 <group string="Original String" id="group_original_string">
                     <field name="serializer"/>
                 </group>
-                <group string="Altered / current String" id="group_current_string" states="{'invisible': Not(Bool(Eval('digest_status')))}">
+                <group string="Altered / current String" id="group_current_string">
                     <field name="serializer_current"/>
                 </group>
             </group>
diff --git a/view/gnuhealth_death_certificate_form.xml b/view/gnuhealth_death_certificate_form.xml
index d3eccd1..e42ccf2 100644
--- a/view/gnuhealth_death_certificate_form.xml
+++ b/view/gnuhealth_death_certificate_form.xml
@@ -13,7 +13,7 @@
                 <group string="Original String" id="group_original_string">
                     <field name="serializer"/>
                 </group>
-                <group string="Altered / current String" id="group_current_string" states="{'invisible': Not(Bool(Eval('digest_status')))}">
+                <group string="Altered / current String" id="group_current_string">
                     <field name="serializer_current"/>
                 </group>
             </group>
diff --git a/view/gnuhealth_patient_evaluation_form.xml b/view/gnuhealth_patient_evaluation_form.xml
index 32556f7..03d5dd6 100644
--- a/view/gnuhealth_patient_evaluation_form.xml
+++ b/view/gnuhealth_patient_evaluation_form.xml
@@ -1,16 +1,16 @@
 <?xml version="1.0"?>
 <data>
-    <xpath expr="//field[@name="state"]" position="after">
+    <xpath expr="//field[@name="discharge_reason"]" position="after">
         <button name="sign_evaluation" help="Sign this patient evaluation" string="Close Evaluation" icon="tryton-go-next" confirm="Close and Sign evaluation ?"/>
     </xpath>
 
-    <xpath expr="/form/notebook/page[@id="page_patient_evaluation_diagnosis"]" position="after">
+    <xpath expr="/form/notebook/page[@id="page_patient_evaluation_extra_info"]" position="after">
         <page string="Validation" id="document_evaluation_validation_page">
         <group colspan="4" string="Document validation" id="document_digest">
             <label name="signed_by"/>
             <field name="signed_by"/>
             <newline/>
-            <group colspan="4" string="Digital Signature" id="group_digital_signature" states="{'invisible': Not(Bool(Eval('digital_signature')))}">
+            <group colspan="4" string="Digital Signature" id="group_digital_signature">
                 <field colspan="4" name="digital_signature"/>
             </group>
             <newline/>
@@ -18,7 +18,7 @@
                 <group string="Original String" id="group_original_string">
                     <field name="serializer"/>
                 </group>
-                <group string="Altered / current String" id="group_current_string" states="{'invisible': Not(Bool(Eval('digest_status')))}">
+                <group string="Altered / current String" id="group_current_string">
                     <field name="serializer_current"/>
                 </group>
             </group>
diff --git a/view/prescription_form.xml b/view/prescription_form.xml
index e137ead..4345f39 100644
--- a/view/prescription_form.xml
+++ b/view/prescription_form.xml
@@ -22,9 +22,7 @@
         </group>
         <newline/>
         <group colspan="4" col="6" id="prescription_generate">
-            <label name="state"/>
-            <field name="state"/>
-            <button name="generate_prescription" help="Sign the prescription" string="Generate" icon="tryton-go-next" confirm="Generate prescription ?"/>
+            <button name="generate_prescription" help="Generate the prescription validation code" string="Generate Validation" icon="tryton-go-next" confirm="Generate Validation ?"/>
             <label name="digest_status"/>
             <field name="digest_status"/>
         </group>
commit 0f6b54e272e0ebb2d1f89daf29c9d63786519bed
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Fri Mar 25 21:58:40 2016 +0100

    Updating copyright years.

diff --git a/debian/copyright b/debian/copyright
index 797cead..bc5aec8 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,8 +1,8 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
 Files: *
-Copyright: 2008-2015 Luis Falcon <lfalcon at gnusolidario.org>
-           2011-2015 GNU Solidario <health at gnusolidario.org>
+Copyright: 2008-2016 Luis Falcon <lfalcon at gnusolidario.org>
+           2011-2016 GNU Solidario <health at gnusolidario.org>
 License: GPL-3+
 
 Files: setup.py
@@ -10,7 +10,7 @@ Copyright: 2011 Cédric Krier <ced at b2ck.com>
 License: GPL-3+
 
 Files: debian/*
-Copyright: 2015 Mathias Behrle <mathiasb at m9s.biz>
+Copyright: 2015-2016 Mathias Behrle <mathiasb at m9s.biz>
 License: GPL-3+
 
 License: GPL-3+
-- 
tryton-modules-health-crypto



More information about the tryton-debian-vcs mailing list