From 1947b4596c6caa429337beff6d72f13c1d609670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 7 Nov 2019 18:21:51 +0100 Subject: [PATCH 01/37] Version bump v1.2.3 --- CHANGES.rst | 18 +++++++++ bika/health/profiles/default/metadata.xml | 2 +- bika/health/upgrade/configure.zcml | 7 ++++ bika/health/upgrade/v01_02_003.py | 48 +++++++++++++++++++++++ setup.py | 2 +- 5 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 bika/health/upgrade/v01_02_003.py diff --git a/CHANGES.rst b/CHANGES.rst index 4999fd2d..d969d7d5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Changelog ========= +1.2.3 (unreleased) +------------------ + +**Added** + + +**Changed** + + +**Removed** + + +**Fixed** + + +**Security** + + 1.2.2 (2019-11-07) ------------------ diff --git a/bika/health/profiles/default/metadata.xml b/bika/health/profiles/default/metadata.xml index c6c9589c..ff13ffe2 100644 --- a/bika/health/profiles/default/metadata.xml +++ b/bika/health/profiles/default/metadata.xml @@ -6,7 +6,7 @@ dependencies before installing this add-on own profile. --> - 1.2.2 + 1.2.3 profile-senaite.lims:default diff --git a/bika/health/upgrade/configure.zcml b/bika/health/upgrade/configure.zcml index 492ccc3c..c7c88ee6 100644 --- a/bika/health/upgrade/configure.zcml +++ b/bika/health/upgrade/configure.zcml @@ -66,4 +66,11 @@ handler="bika.health.upgrade.v01_02_002.upgrade" profile="bika.health:default"/> + + diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py new file mode 100644 index 00000000..29e467fd --- /dev/null +++ b/bika/health/upgrade/v01_02_003.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.HEALTH. +# +# SENAITE.HEALTH is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the Free +# Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2019 by it's authors. +# Some rights reserved, see README and LICENSE. + +from bika.health import logger +from bika.health.config import PROJECTNAME +from bika.lims.upgrade import upgradestep +from bika.lims.upgrade.utils import UpgradeUtils + +version = '1.2.3' +profile = 'profile-{0}:default'.format(PROJECTNAME) + + +@upgradestep(PROJECTNAME, version) +def upgrade(tool): + portal = tool.aq_inner.aq_parent + setup = portal.portal_setup + ut = UpgradeUtils(portal) + ver_from = ut.getInstalledVersion(PROJECTNAME) + + if ut.isOlderVersion(PROJECTNAME, version): + logger.info("Skipping upgrade of {0}: {1} > {2}".format( + PROJECTNAME, ver_from, version)) + return True + + logger.info("Upgrading {0}: {1} -> {2}".format(PROJECTNAME, ver_from, + version)) + + # -------- ADD YOUR STUFF BELOW -------- + + logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) + return True diff --git a/setup.py b/setup.py index 5b4af51d..c910239a 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages -version = '1.2.2' +version = '1.2.3' setup( name='senaite.health', From 765baa480766e1d1993aace168c8334bf1197b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Fri, 6 Dec 2019 11:35:45 +0100 Subject: [PATCH 02/37] VaccinationCenters listing: index getName --> sortable_title --- .../controlpanel/bika_vaccinationcenters.py | 167 ++++++++++-------- 1 file changed, 96 insertions(+), 71 deletions(-) diff --git a/bika/health/controlpanel/bika_vaccinationcenters.py b/bika/health/controlpanel/bika_vaccinationcenters.py index 2193fb3c..6708a27e 100644 --- a/bika/health/controlpanel/bika_vaccinationcenters.py +++ b/bika/health/controlpanel/bika_vaccinationcenters.py @@ -15,110 +15,135 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2019 by it"s authors. # Some rights reserved, see README and LICENSE. -from AccessControl.SecurityInfo import ClassSecurityInfo +import collections + from Products.ATContentTypes.content import schemata from Products.Archetypes import atapi -from Products.Archetypes.ArchetypeTool import registerType -from Products.Archetypes.public import * -from Products.CMFCore import permissions -from Products.CMFCore.utils import getToolByName -from ZODB.POSException import ConflictError -from bika.lims import bikaMessageFactory as _b -from bika.health import bikaMessageFactory as _ -from bika.lims.browser.bika_listing import BikaListingView -from bika.health.config import PROJECTNAME -from bika.lims.content.bikaschema import BikaFolderSchema -from bika.health.interfaces import IVaccinationCenters -from bika.lims.interfaces import IHaveNoBreadCrumbs -from operator import itemgetter from plone.app.content.browser.interfaces import IFolderContentsView -from plone.app.folder.folder import ATFolder, ATFolderSchema +from plone.app.folder.folder import ATFolder +from plone.app.folder.folder import ATFolderSchema from plone.app.layout.globals.interfaces import IViewView from zope.interface import implements +from bika.health import bikaMessageFactory as _ +from bika.health.config import PROJECTNAME +from bika.health.interfaces import IVaccinationCenters +from bika.health.permissions import AddVaccinationCenter +from bika.lims import api +from bika.lims.browser.bika_listing import BikaListingView +from bika.lims.catalog.bikasetup_catalog import SETUP_CATALOG +from bika.lims.utils import get_link + + +# TODO: Separate content and view into own modules! + + class VaccinationCentersView(BikaListingView): implements(IFolderContentsView, IViewView) + def __init__(self, context, request): super(VaccinationCentersView, self).__init__(context, request) - self.catalog = 'bika_setup_catalog' - self.contentFilter = {'portal_type': 'VaccinationCenter', - 'sort_on': 'getName'} - self.context_actions = {_('Add'): - {'url': 'createObject?type_name=VaccinationCenter', - 'icon': '++resource++bika.lims.images/add.png'}} + + self.catalog = SETUP_CATALOG + self.contentFilter = dict( + portal_type="VaccinationCenter", + sort_on="sortable_title" + ) + + self.context_actions = { + _("Add"): { + "url": "createObject?type_name=VaccinationCenter", + "permission": AddVaccinationCenter, + "icon": "++resource++bika.lims.images/add.png"} + } + self.title = self.context.translate(_("Vaccination Centers")) - self.icon = self.portal_url + "/++resource++bika.health.images/vaccinationcenter_big.png" - self.description = "" - self.show_sort_column = False + self.icon = "{}/{}".format( + self.portal_url, + "/++resource++bika.health.images/vaccinationcenter_big.png" + ) + self.show_select_row = False self.show_select_column = True self.pagesize = 50 - self.columns = { - 'Name': {'title': _('Name'), - 'index': 'getName'}, - 'Email': {'title': _('Email'), - 'toggle': True}, - 'Phone': {'title': _('Phone'), - 'toggle': True}, - 'Fax': {'title': _('Fax'), - 'toggle': True}, - } + self.columns = collections.OrderedDict(( + ("Name", { + "title": _("Name"), + "index": "sortable_title" + }), + ("Email", { + "title": _("Email"), + "toggle": True + }), + ("Phone", { + "title": _("Phone"), + "toggle": True + }), + ("Fax", { + "title": _("Fax"), + "toggle": True + }), + )) + self.review_states = [ - {'id':'default', - 'title': _('Active'), - 'contentFilter': {'is_active': True}, - 'transitions': [{'id':'deactivate'}, ], - 'columns': ['Name', - 'Email', - 'Phone', - 'Fax']}, - {'id':'inactive', - 'title': _('Dormant'), - 'contentFilter': {'is_active': False}, - 'transitions': [{'id':'activate'}, ], - 'columns': ['Name', - 'Email', - 'Phone', - 'Fax']}, - {'id':'all', - 'title': _('All'), - 'contentFilter':{}, - 'columns': ['Name', - 'Email', - 'Phone', - 'Fax']}, + { + "id":"default", + "title": _("Active"), + "contentFilter": {"is_active": True}, + "transitions": [{"id": "deactivate"}, ], + "columns": self.columns.keys(), + }, { + "id":"inactive", + "title": _("Dormant"), + "contentFilter": {"is_active": False}, + "transitions": [{"id": "activate"}, ], + "columns": self.columns.keys(), + }, { + "id":"all", + "title": _("All"), + "contentFilter":{}, + "columns": self.columns.keys(), + }, ] def before_render(self): """Before template render hook """ super(VaccinationCentersView, self).before_render() - # Don't allow any context actions on Vaccination Centers folder + # Don"t allow any context actions self.request.set("disable_border", 1) - def folderitems(self): - items = BikaListingView.folderitems(self) - for x in range(len(items)): - if not items[x].has_key('obj'): continue - obj = items[x]['obj'] - items[x]['Name'] = obj.getName() - items[x]['Email'] = obj.getEmailAddress() - items[x]['Phone'] = obj.getPhone() - items[x]['Fax'] = obj.getFax() - items[x]['replace']['Name'] = "%s" % \ - (items[x]['url'], items[x]['Name']) + def folderitem(self, obj, item, index): + """Service triggered each time an item is iterated in folderitems. + The use of this service prevents the extra-loops in child objects. + :obj: the instance of the class to be foldered + :item: dict containing the properties of the object to be used by + the template + :index: current index of the item + """ + name = obj.getName() + url = api.get_url(obj) + + item["Email"] = obj.getEmailAddress() + item["Phone"] = obj.getPhone() + item["Fax"] = obj.getFax() + item["replace"]["Name"] = get_link(url, value=name) + + return item - return items schema = ATFolderSchema.copy() + + class VaccinationCenters(ATFolder): implements(IVaccinationCenters) displayContentsTab = False schema = schema + schemata.finalizeATCTSchema(schema, folderish = True, moveDiscussion = False) atapi.registerType(VaccinationCenters, PROJECTNAME) From 5c461beb1e81681677958f94deb1fb2762c3bfd8 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Sat, 14 Dec 2019 00:38:52 +0100 Subject: [PATCH 03/37] Changed Base Catalog Tool (#157) * Changed Base Catalog Tool See: https://github.com/senaite/senaite.core/pull/1487 * Changelog updated --- CHANGES.rst | 2 ++ bika/health/catalog/patient_catalog.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d969d7d5..f5b380c6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,8 @@ Changelog **Changed** +- #157 Changed Base Catalog Tool + **Removed** diff --git a/bika/health/catalog/patient_catalog.py b/bika/health/catalog/patient_catalog.py index ed6265ff..71f548ac 100644 --- a/bika/health/catalog/patient_catalog.py +++ b/bika/health/catalog/patient_catalog.py @@ -20,7 +20,7 @@ from App.class_init import InitializeClass from bika.health.interfaces import IBikaHealthCatalogPatientListing -from bika.lims.catalog.bika_catalog_tool import BikaCatalogTool +from bika.lims.catalog.base import BaseCatalog from bika.lims.catalog.catalog_basic_template import BASE_CATALOG_COLUMNS from bika.lims.catalog.catalog_basic_template import BASE_CATALOG_INDEXES from zope.interface import implements @@ -74,14 +74,14 @@ } -class BikaHealthCatalogPatientListing(BikaCatalogTool): +class BikaHealthCatalogPatientListing(BaseCatalog): """ Catalog to list patients in BikaListing """ implements(IBikaHealthCatalogPatientListing) def __init__(self): - BikaCatalogTool.__init__( + BaseCatalog.__init__( self, CATALOG_PATIENTS, "Senaite Health Catalog Patients", "BikaHealthCatalogPatientListing") From b81999635d4d1ef6c1635b4ad7307cc808ce92e9 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Mon, 16 Dec 2019 16:57:16 +0100 Subject: [PATCH 04/37] Fix the filter query in the Add Sample Form (#158) * Fix the filter query in the Add Sample Form * Changelog updated --- CHANGES.rst | 2 ++ bika/health/adapters/addsample.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f5b380c6..c8a85fb3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,8 @@ Changelog **Fixed** +- #158 Fix the filter query in the Add Sample Form + **Security** diff --git a/bika/health/adapters/addsample.py b/bika/health/adapters/addsample.py index 5f3c47a9..768d626c 100644 --- a/bika/health/adapters/addsample.py +++ b/bika/health/adapters/addsample.py @@ -138,10 +138,10 @@ def get_object_info(self): filter_queries = { # Allow to choose Patients from same Client only "Patient": { - "getPrimaryReferrerUID": [uid, ""], + "getPrimaryReferrerUID": [uid, None], }, "ClientPatientID": { - "getPrimaryReferrerUID": [uid, ""], + "getPrimaryReferrerUID": [uid, None], } } object_info["filter_queries"] = filter_queries From 5b94ff8732656d02b4d2c6cff503c3f1591e9e9e Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Tue, 17 Dec 2019 23:58:21 +0100 Subject: [PATCH 05/37] Ensure `Client` contents allow to hold `Patient` types (#159) * Ensure `Client` contents allow to hold `Patient` types * Changelog updated * Check Patients can be added into Clients on creation too --- CHANGES.rst | 1 + bika/health/subscribers/configure.zcml | 6 ++++++ bika/health/subscribers/patient.py | 25 +++++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index c8a85fb3..ce37e8b4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,7 @@ Changelog **Fixed** +- #159 Ensure `Client` contents allow to hold `Patient` types - #158 Fix the filter query in the Add Sample Form diff --git a/bika/health/subscribers/configure.zcml b/bika/health/subscribers/configure.zcml index 9b9a9a77..0b9175bc 100644 --- a/bika/health/subscribers/configure.zcml +++ b/bika/health/subscribers/configure.zcml @@ -1,6 +1,12 @@ + + + Date: Thu, 19 Dec 2019 10:22:30 +0100 Subject: [PATCH 06/37] health's analysis specification widget + validator no longer used --- bika/health/configure.zcml | 1 - bika/health/content/analysisspec.py | 65 --------- bika/health/content/configure.zcml | 1 - .../widgets/analysisspecificationwidget.py | 129 ------------------ bika/health/widgets/configure.zcml | 16 --- 5 files changed, 212 deletions(-) delete mode 100644 bika/health/content/analysisspec.py delete mode 100644 bika/health/widgets/analysisspecificationwidget.py delete mode 100644 bika/health/widgets/configure.zcml diff --git a/bika/health/configure.zcml b/bika/health/configure.zcml index ab53db05..4242e22c 100644 --- a/bika/health/configure.zcml +++ b/bika/health/configure.zcml @@ -37,7 +37,6 @@ - diff --git a/bika/health/content/analysisspec.py b/bika/health/content/analysisspec.py deleted file mode 100644 index d4318a5b..00000000 --- a/bika/health/content/analysisspec.py +++ /dev/null @@ -1,65 +0,0 @@ -# -*- coding: utf-8 -*- -# -# This file is part of SENAITE.HEALTH. -# -# SENAITE.HEALTH is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the Free -# Software Foundation, version 2. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# -# Copyright 2018-2019 by it's authors. -# Some rights reserved, see README and LICENSE. - -from Products.Archetypes import atapi -from Products.Archetypes.config import REFERENCE_CATALOG -from Products.CMFCore.utils import getToolByName -from archetypes.schemaextender.interfaces import ISchemaModifier -from bika.health import bikaMessageFactory as _ -from bika.health.widgets.analysisspecificationwidget import \ - AnalysisSpecificationWidget, AnalysisSpecificationPanicValidator -from bika.lims.config import PROJECTNAME as BIKALIMS_PROJECTNAME -from bika.lims.content.analysisspec import AnalysisSpec as BaseAnalysisSpec -from bika.lims.interfaces import IAnalysisSpec -from zope.component import adapts -from zope.interface import implements - - -class AnalysisSpecSchemaModifier(object): - adapts(IAnalysisSpec) - implements(ISchemaModifier) - - def __init__(self, context): - self.context = context - - def fiddle(self, schema): - - # Add panic alert range columns - validator = AnalysisSpecificationPanicValidator() - schema['ResultsRange'].subfields += ('minpanic', 'maxpanic') - schema['ResultsRange'].subfield_validators['minpanic'] = validator - schema['ResultsRange'].subfield_validators['maxpanic'] = validator - schema['ResultsRange'].subfield_labels['minpanic'] = _('Min panic') - schema['ResultsRange'].subfield_labels['maxpanic'] = _('Max panic') - srcwidget = schema['ResultsRange'].widget - schema['ResultsRange'].widget = AnalysisSpecificationWidget( - checkbox_bound=srcwidget.checkbox_bound, - label=srcwidget.label, - description=srcwidget.description, - ) - return schema - - -class AnalysisSpec(BaseAnalysisSpec): - """ Inherits from bika.content.analysisspec.AnalysisSpec - """ - pass - -atapi.registerType(AnalysisSpec, BIKALIMS_PROJECTNAME) diff --git a/bika/health/content/configure.zcml b/bika/health/content/configure.zcml index d8e037c4..6edcef91 100644 --- a/bika/health/content/configure.zcml +++ b/bika/health/content/configure.zcml @@ -11,7 +11,6 @@ - diff --git a/bika/health/widgets/analysisspecificationwidget.py b/bika/health/widgets/analysisspecificationwidget.py deleted file mode 100644 index b15b39bc..00000000 --- a/bika/health/widgets/analysisspecificationwidget.py +++ /dev/null @@ -1,129 +0,0 @@ -# -*- coding: utf-8 -*- -# -# This file is part of SENAITE.HEALTH. -# -# SENAITE.HEALTH is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the Free -# Software Foundation, version 2. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# -# Copyright 2018-2019 by it's authors. -# Some rights reserved, see README and LICENSE. - -from AccessControl import ClassSecurityInfo -from Products.Archetypes.Registry import registerWidget -from Products.CMFCore.utils import getToolByName -from Products.validation import validation -from Products.validation.interfaces.IValidator import IValidator -from zope.interface import implements - -from bika.health import api -from bika.health import bikaMessageFactory as _ -from bika.lims.browser.widgets.analysisspecificationwidget import \ - AnalysisSpecificationView as BaseView, \ - AnalysisSpecificationWidget as BaseWidget - - -class AnalysisSpecificationView(BaseView): - - def __init__(self, context, request): - super(AnalysisSpecificationView, self).__init__(context, request) - - self.columns['minpanic'] = {'title': _('Min panic'), 'sortable': False} - self.columns['maxpanic'] = {'title': _('Max panic'), 'sortable': False} - self.review_states[0]['columns'] += ['minpanic', 'maxpanic'] - - def folderitem(self, obj, item, index): - item = super(AnalysisSpecificationView, self).folderitem(obj, item, index) - obj = api.get_object(obj) - keyword = obj.getKeyword() - spec = self.specification.get(keyword, {}) - item['minpanic'] = spec.get("minpanic", "") - item['maxpanic'] = spec.get("maxpanic", "") - return item - - def get_editable_columns(self): - """Return editable fields - """ - cols = super(AnalysisSpecificationView, self).get_editable_columns() - cols.extend(["minpanic", "maxpanic"]) - return cols - - -class AnalysisSpecificationWidget(BaseWidget): - _properties = BaseWidget._properties.copy() - - security = ClassSecurityInfo() - - security.declarePublic('process_form') - - def process_form(self, instance, field, form, empty_marker=None, - emptyReturnsMarker=False): - """Return a list of dictionaries fir for AnalysisSpecsResultsField - consumption. - """ - values = BaseWidget.process_form(self, instance, field, form, - empty_marker, emptyReturnsMarker) - for value in values[0]: - uid = value["uid"] - value["minpanic"] = self._get_spec_value(form, uid, "minpanic") - value["maxpanic"] = self._get_spec_value(form, uid, "maxpanic") - return values[0], {} - - -registerWidget(AnalysisSpecificationWidget, - title='Analysis Specification Results', - description=('Analysis Specification Results')) - - -class AnalysisSpecificationPanicValidator(object): - implements(IValidator) - name = "analysisspecs_panic_validator" - - def __call__(self, value, *args, **kwargs): - instance = kwargs['instance'] - ts = getToolByName(instance, 'translation_service').translate - - if instance.REQUEST.get('validated', '') == self.name: - return True - else: - instance.REQUEST['validated'] = self.name - pmins = instance.REQUEST.get('minpanic', {}) - if len(pmins) > 0: - pmins = pmins[0] - pmaxs = instance.REQUEST.get('maxpanic', {}) - if len(pmaxs) > 0: - pmaxs = pmaxs[0] - uids = pmins.keys() - for uid in uids: - pmin = pmins.get(uid, '') == '' and '0' or pmins[uid] - pmax = pmaxs.get(uid, '') == '' and '0' or pmaxs[uid] - - # Values must be numbers - try: - pmin = float(pmin) - except: - return ts(_("Validation failed: Panic min value must be " - "numeric")) - - try: - pmax = float(pmax) - except: - return ts(_("Validation failed: Panic min value must be " - "numeric")) - - if pmin > pmax: - return ts(_("Validation failed: Panic max value must be " - "greater than panic min value")) - return True - - -validation.register(AnalysisSpecificationPanicValidator()) diff --git a/bika/health/widgets/configure.zcml b/bika/health/widgets/configure.zcml deleted file mode 100644 index 1e6c9072..00000000 --- a/bika/health/widgets/configure.zcml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - From 23a667510a4b1af66fbd489e56ee0bd820422e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 19 Dec 2019 15:33:31 +0100 Subject: [PATCH 07/37] Remove email_popup --- bika/health/static/js/bika.health.site.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/bika/health/static/js/bika.health.site.js b/bika/health/static/js/bika.health.site.js index 1aff5da6..ce0cafc4 100644 --- a/bika/health/static/js/bika.health.site.js +++ b/bika/health/static/js/bika.health.site.js @@ -6,28 +6,6 @@ function HealthSiteView() { var that = this; that.load = function() { - if ($('#email_popup').length) { - $("#email_popup").click(function(event){ - event.preventDefault(); - var dialog = $('
'); - dialog - .load(window.portal_url + "/email_popup", - {'uid':$('input[name="email_popup_uid"]').val(), - '_authenticator': $('input[name="_authenticator"]').val()} - ) - .dialog({ - width:450, - height:450, - closeText: _("Close"), - resizable:true, - title: " " + $(this).text() - }); - }); - if ($('input[name="email_popup_uid"]').attr('autoshow')=='True') { - $('#email_popup').click(); - } - } - /* #HACK * https://github.com/bikalabs/Bika-LIMS/issues/928 * Tricky and foolish stuff to override the hazardous icon in health. From c3a794f449b6f99a906ab46adee82f3aa630ce4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 19 Dec 2019 20:20:27 +0100 Subject: [PATCH 08/37] Added senaite.panic as a dependency --- bika/health/profiles/default/metadata.xml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/bika/health/profiles/default/metadata.xml b/bika/health/profiles/default/metadata.xml index ff13ffe2..f6737759 100644 --- a/bika/health/profiles/default/metadata.xml +++ b/bika/health/profiles/default/metadata.xml @@ -9,5 +9,6 @@ 1.2.3 profile-senaite.lims:default + profile-senaite.panic:default
diff --git a/setup.py b/setup.py index c910239a..a3c00c7e 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,7 @@ "archetypes.schemaextender", "senaite.lims>=1.3.1", "senaite.lims<2.0.0", + "senaite.panic", ], extras_require={ 'test': [ From cc9e7b38a1628e7671e3b9bf87ac276112db7bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Fri, 20 Dec 2019 15:19:52 +0100 Subject: [PATCH 09/37] Remove Autoshow Panic Level Alert option from setup --- bika/health/content/bikasetup.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/bika/health/content/bikasetup.py b/bika/health/content/bikasetup.py index 9df740a7..63c36b9a 100644 --- a/bika/health/content/bikasetup.py +++ b/bika/health/content/bikasetup.py @@ -42,16 +42,6 @@ class BikaSetupSchemaExtender(object): "analysis result exceeding a panic level is " "submitted")) ), - ExtBooleanField('AutoShowPanicAlertEmailPopup', - schemata="Analyses", - default=False, - widget=BooleanWidget( - label=_("Show client email pop-up when panic level"), - description=_("If enabled, shows automatically an email form " - "pop-up for alerting the client about a panic " - "level exceeded when Analysis Request view is " - "loaded")) - ), ExtStringField('PatientConditionsHeightUnits', schemata="Cases", default=_("Feet/inches"), From 4210cf42a3f60a45cbd96709f6b04b568c62b339 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Sun, 22 Dec 2019 13:16:57 +0100 Subject: [PATCH 10/37] Updated buildout to include senaite.panic sources --- buildout.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildout.cfg b/buildout.cfg index 819da627..6592d267 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -9,12 +9,12 @@ parts = write_code_headers extends = - http://dist.plone.org/release/4.3.18/versions.cfg + http://dist.plone.org/release/4.3.19/versions.cfg index = https://pypi.python.org/simple/ find-links = - http://dist.plone.org/release/4.3.18 + http://dist.plone.org/release/4.3.19 http://dist.plone.org/thirdparty eggs = @@ -46,6 +46,7 @@ senaite.core.listing = git git://github.com/senaite/senaite.core.listing.git pus senaite.core.supermodel = git git://github.com/senaite/senaite.core.supermodel.git pushurl=git@github.com:senaite/senaite.core.supermodel.git branch=master senaite.impress = git git://github.com/senaite/senaite.impress.git pushurl=git@github.com:senaite/senaite.impress.git branch=master senaite.lims = git git://github.com/senaite/senaite.lims.git pushurl=git@github.com:senaite/senaite.lims.git branch=master +senaite.panic = git git://github.com/senaite/senaite.panic.git pushurl=git@github.com:senaite/senaite.panic.git branch=master [lxml] recipe = z3c.recipe.staticlxml From b0a3b41c05296b4fb400a661bba822707ef7947f Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Sun, 22 Dec 2019 13:28:34 +0100 Subject: [PATCH 11/37] added senaite.panic to eggs section --- buildout.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/buildout.cfg b/buildout.cfg index 6592d267..d915621e 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -23,6 +23,7 @@ eggs = lxml plone.reload senaite.lims + senaite.panic i18ndude Products.PrintingMailHost From bb298f4b5aef9474b9d921a9166e30d7fe061071 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Sun, 22 Dec 2019 20:59:27 +0100 Subject: [PATCH 12/37] Added senaite.panic to base test class --- bika/health/tests/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bika/health/tests/base.py b/bika/health/tests/base.py index 52da1826..9af792a2 100644 --- a/bika/health/tests/base.py +++ b/bika/health/tests/base.py @@ -44,16 +44,19 @@ def setUpZope(self, app, configurationContext): import archetypes.schemaextender import bika.lims import senaite.lims + import senaite.panic import bika.health self.loadZCML(package=archetypes.schemaextender) self.loadZCML(package=bika.lims) self.loadZCML(package=senaite.lims) + self.loadZCML(package=senaite.panic) self.loadZCML(package=bika.health) # Install product and call its initialize() function z2.installProduct(app, "bika.lims") z2.installProduct(app, "senaite.lims") + z2.installProduct(app, "senaite.panic") z2.installProduct(app, "bika.health") def setUpPloneSite(self, portal): From 210499c021ff918b732dbd873069492d1cea9a10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Tue, 24 Dec 2019 15:35:45 +0100 Subject: [PATCH 13/37] Change default panic alert email's body --- bika/health/setuphandlers.py | 15 +++++++++++++++ bika/health/upgrade/v01_02_003.py | 2 ++ 2 files changed, 17 insertions(+) diff --git a/bika/health/setuphandlers.py b/bika/health/setuphandlers.py index 17e2abef..b2cdb989 100644 --- a/bika/health/setuphandlers.py +++ b/bika/health/setuphandlers.py @@ -26,7 +26,9 @@ from Products.CMFCore.permissions import ListFolderContents from Products.CMFCore.permissions import View from Products.CMFCore.utils import getToolByName +from plone import api as ploneapi +from bika.health import bikaMessageFactory as _ from bika.health import logger from bika.health.catalog import \ getCatalogDefinitions as getCatalogDefinitionsHealth @@ -123,6 +125,9 @@ def post_install(portal_setup): # Ensure health's skin layer(s) always gets priority over core's portal_setup.runImportStepFromProfile(DEFAULT_PROFILE_ID, "skins") + # Setup default email body and subject for panic alerts + setup_panic_alerts(portal) + logger.info("SENAITE Health post-install handler [DONE]") @@ -438,3 +443,13 @@ def reindex(obj, recurse=False): continue logger.info("Reindexing {}".format(repr(obj))) reindex(obj) + + +def setup_panic_alerts(portal): + """Setups the template texts for panic alert email's subject and body + """ + email_body = _( + "Some results from the Sample ${sample_id} exceeded the panic levels " + "that may indicate an imminent life-threatening condition:\n\n" + "${analyses}\n\n--\n${lab_address}") + ploneapi.portal.set_registry_record("senaite.panic.email_body", email_body) diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 29e467fd..684a7728 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -20,6 +20,7 @@ from bika.health import logger from bika.health.config import PROJECTNAME +from bika.health.setuphandlers import setup_panic_alerts from bika.lims.upgrade import upgradestep from bika.lims.upgrade.utils import UpgradeUtils @@ -43,6 +44,7 @@ def upgrade(tool): version)) # -------- ADD YOUR STUFF BELOW -------- + setup_panic_alerts(portal) logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True From bca0a95e56c919808d6c0928bf5a99168a282cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 12 Jan 2020 20:42:40 +0100 Subject: [PATCH 14/37] Cannot search by Client Patient ID in Sample Add form --- CHANGES.rst | 1 + bika/health/content/analysisrequest.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ce37e8b4..2091fb27 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,7 @@ Changelog **Fixed** +- #162 Unable to search by Client Patient ID in Sample Add form - #159 Ensure `Client` contents allow to hold `Patient` types - #158 Fix the filter query in the Add Sample Form diff --git a/bika/health/content/analysisrequest.py b/bika/health/content/analysisrequest.py index 62be8a04..5915b7f5 100644 --- a/bika/health/content/analysisrequest.py +++ b/bika/health/content/analysisrequest.py @@ -126,7 +126,7 @@ def __init__(self, context): 'secondary': 'disabled'}, catalog_name='bikahealth_catalog_patient_listing', portal_types=('Patient',), - search_field='getClientPatientID', + search_fields=('getClientPatientID',), base_query={'is_active': True, 'sort_limit': 50, 'sort_on': 'getClientPatientID', From 38be466e94c71045277fb671eb6d4b98c6ac3ab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 12 Jan 2020 22:26:54 +0100 Subject: [PATCH 15/37] Cannot override Patients listing behavior with subscriber adapters `PatientsView` is used as the "root" listing view for Patients listings. Since it overrides the function `before_render`, some of the changes made in subscriber adapters from another add-ons are omitted. For instance, trying to modify `self.context_actions` via subscriber adapters won't have any effect because after the call, the value is overrided in PatientsView. This Pull Request moves the logic `before_render` from the base class `PatientsView` to the function `update`. --- CHANGES.rst | 1 + bika/health/browser/patients/folder_view.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2091fb27..8bab95f6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,7 @@ Changelog **Changed** +- #163 Cannot override behavior of Patients folder when using `before_render` - #157 Changed Base Catalog Tool diff --git a/bika/health/browser/patients/folder_view.py b/bika/health/browser/patients/folder_view.py index 22a8028a..4dac40b4 100644 --- a/bika/health/browser/patients/folder_view.py +++ b/bika/health/browser/patients/folder_view.py @@ -122,10 +122,10 @@ def __init__(self, context, request): }, ] - def before_render(self): + def update(self): """Before template render hook """ - super(PatientsView, self).before_render() + super(PatientsView, self).update() if IPatients.providedBy(self.context): self.request.set("disable_border", 1) From 00351e2153357cada30a5bc1d882fb7f5e59f392 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 21:43:35 +0100 Subject: [PATCH 16/37] Remove adapter for resultoutofrange (panic) --- bika/health/browser/analysis/__init__.py | 19 --- bika/health/browser/analysis/configure.zcml | 13 -- .../browser/analysis/resultoutofrange.py | 120 ------------------ bika/health/browser/configure.zcml | 1 - 4 files changed, 153 deletions(-) delete mode 100644 bika/health/browser/analysis/__init__.py delete mode 100644 bika/health/browser/analysis/configure.zcml delete mode 100644 bika/health/browser/analysis/resultoutofrange.py diff --git a/bika/health/browser/analysis/__init__.py b/bika/health/browser/analysis/__init__.py deleted file mode 100644 index 2ec8771c..00000000 --- a/bika/health/browser/analysis/__init__.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- -# -# This file is part of SENAITE.HEALTH. -# -# SENAITE.HEALTH is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the Free -# Software Foundation, version 2. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# -# Copyright 2018-2019 by it's authors. -# Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/analysis/configure.zcml b/bika/health/browser/analysis/configure.zcml deleted file mode 100644 index 0a57d8f2..00000000 --- a/bika/health/browser/analysis/configure.zcml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/bika/health/browser/analysis/resultoutofrange.py b/bika/health/browser/analysis/resultoutofrange.py deleted file mode 100644 index 693c3020..00000000 --- a/bika/health/browser/analysis/resultoutofrange.py +++ /dev/null @@ -1,120 +0,0 @@ -# -*- coding: utf-8 -*- -# -# This file is part of SENAITE.HEALTH. -# -# SENAITE.HEALTH is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the Free -# Software Foundation, version 2. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# -# Copyright 2018-2019 by it's authors. -# Some rights reserved, see README and LICENSE. - -from Products.CMFCore.utils import getToolByName -from bika.lims import bikaMessageFactory as _ -from bika.lims.interfaces import IAnalysis -from bika.lims.interfaces import IFieldIcons -from zope.interface import implements -from zope.component import adapts - - -class ResultOutOfRange(object): - """An alert provider for Analysis results outside of panic ranges - """ - - implements(IFieldIcons) - adapts(IAnalysis) - - def __init__(self, context): - self.context = context - - def __call__(self, result=None, specification=None, **kwargs): - """ Check if result value is 'in panic'. - """ - analysis = self.context - path = '++resource++bika.health.images' - - translate = self.context.translate - workflow = getToolByName(self.context, 'portal_workflow') - - astate = workflow.getInfoFor(analysis, 'review_state') - if astate == 'retracted': - return {} - - result = result is not None and str(result) or analysis.getResult() - if result == '': - return {} - # if analysis result is not a number, then we assume in range - try: - result = float(str(result)) - except ValueError: - return {} - # No specs available, assume in range - specs = analysis.getAnalysisSpecs(specification) \ - if hasattr(analysis, 'getAnalysisSpecs') else None - if specs is None: - return {} - - keyword = analysis.getKeyword() - spec = specs.getResultsRangeDict() - if keyword in spec: - try: - spec_min = float(spec[keyword]['minpanic']) - except (ValueError, TypeError): - spec_min = None - - try: - spec_max = float(spec[keyword]['maxpanic']) - except (ValueError, TypeError): - spec_max = None - - if not (spec_min or spec_max): - # No min and max values defined - outofrange, acceptable, o_spec = False, None, None - - elif spec_min and spec_max and spec_min <= result <= spec_max: - # min and max values defined - outofrange, acceptable, o_spec = False, None, None - - elif spec_min and not spec_max and spec_min <= result: - # max value not defined - outofrange, acceptable, o_spec = False, None, None - - elif not spec_min and spec_max and spec_max >= result: - # min value not defined - outofrange, acceptable, o_spec = False, None, None - - else: - outofrange, acceptable, o_spec = True, False, spec[keyword] - - else: - # Analysis without specification values. Assume in range - outofrange, acceptable, o_spec = False, None, None - - alerts = {} - if outofrange: - range_str = "{0} {1}, {2} {3}".format( - translate(_("minpanic")), str(o_spec['minpanic']), - translate(_("maxpanic")), str(o_spec['maxpanic']) - ) - - if acceptable: - message = "{0} ({1})".format( - translate(_('Result in shoulder panic range')), range_str) - else: - message = "{0} ({1})".format( - translate(_('Result exceeded panic level')), range_str) - - alerts[analysis.UID()] = [{ - 'msg': message, - 'icon': path + '/lifethreat.png', - 'field': 'Result', }, ] - return alerts diff --git a/bika/health/browser/configure.zcml b/bika/health/browser/configure.zcml index 7360a131..aa124b19 100644 --- a/bika/health/browser/configure.zcml +++ b/bika/health/browser/configure.zcml @@ -2,7 +2,6 @@ xmlns="http://namespaces.zope.org/zope" i18n_domain="senaite.health"> - From 549e3eae9fdb8d62ded6ebad75709a763d3b0ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 21:55:24 +0100 Subject: [PATCH 17/37] Remove field `PanicEmailAlertToClientSent` --- bika/health/content/analysisrequest.py | 10 --------- bika/health/upgrade/v01_02_003.py | 29 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/bika/health/content/analysisrequest.py b/bika/health/content/analysisrequest.py index 62be8a04..4a5c909a 100644 --- a/bika/health/content/analysisrequest.py +++ b/bika/health/content/analysisrequest.py @@ -102,16 +102,6 @@ def __init__(self, context): ), ), - ExtBooleanField( - 'PanicEmailAlertToClientSent', - default=False, - widget=BooleanWidget( - visible={'edit': 'invisible', - 'view': 'invisible', - 'add': 'invisible'}, - ), - ), - ExtStringField( 'ClientPatientID', searchable=True, diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 684a7728..59fe65c9 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -18,9 +18,11 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. +from bika.health import api from bika.health import logger from bika.health.config import PROJECTNAME from bika.health.setuphandlers import setup_panic_alerts +from bika.lims.catalog import CATALOG_ANALYSIS_REQUEST_LISTING from bika.lims.upgrade import upgradestep from bika.lims.upgrade.utils import UpgradeUtils @@ -44,7 +46,34 @@ def upgrade(tool): version)) # -------- ADD YOUR STUFF BELOW -------- + # Setup template text for panic level alert emails + # https://github.com/senaite/senaite.health/pull/161 setup_panic_alerts(portal) + # Update Sample's PanicEmailAlertSent field + # https://github.com/senaite/senaite.health/pull/161 + update_sample_panic_alert_field(portal) + logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True + + +def update_sample_panic_alert_field(portal): + """The behavior of the AnalysisRequest's field `PanicEmailAlertToClientSent` + from senaite.health is replaced by senaite.panic's PanicEmailAlertSent + """ + logger.info("Updating Sample's PanicEmailAlertSent field ...") + query = dict(portal_type="AnalysisRequest", + sort_on="created", + sort_order="descending") + brains = api.search(query, CATALOG_ANALYSIS_REQUEST_LISTING) + total = len(brains) + for num, brain in enumerate(brains): + if num and num % 100 == 0: + logger.info("Updating PanicEmailAlertSent field: {}/{}" + .format(num, total)) + sample = api.get_object(brain) + if sample.__dict__.get("PanicEmailAlertToClientSent", False): + sample.setPanicEmailAlertSent(True) + + logger.info("Updating Sample's PanicEmailAlertSent field [DONE]") From 38f82c985a7c33a5673d8e137eab709498a84e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 21:59:19 +0100 Subject: [PATCH 18/37] Remove custom importer for Specifications (Setupdata) --- bika/health/setupdata/__init__.py | 67 +++---------------------------- 1 file changed, 6 insertions(+), 61 deletions(-) diff --git a/bika/health/setupdata/__init__.py b/bika/health/setupdata/__init__.py index 6224cdf7..caff2fa6 100644 --- a/bika/health/setupdata/__init__.py +++ b/bika/health/setupdata/__init__.py @@ -18,18 +18,19 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. +import os.path +import transaction from Products.CMFCore.utils import getToolByName -from Products.CMFPlone.utils import safe_unicode, _createObjectByType +from Products.CMFPlone.utils import _createObjectByType +from pkg_resources import resource_filename +from zope.interface import implements + from bika.health import logger -from Products.CMFCore.utils import getToolByName from bika.lims.exportimport.dataimport import SetupDataSetList as SDL from bika.lims.exportimport.setupdata import WorksheetImporter from bika.lims.idserver import renameAfterCreation from bika.lims.interfaces import ISetupDataSetList from bika.lims.utils import tmpID -from pkg_resources import resource_filename -from zope.interface import implements -import transaction, os.path class SetupDataSetList(SDL): @@ -381,62 +382,6 @@ def Import(self): renameAfterCreation(obj) -class Analysis_Specifications(WorksheetImporter): - - def Import(self): - print "EOOO" - s_t = '' - c_t = 'lab' - bucket = {} - pc = getToolByName(self.context, 'portal_catalog') - bsc = getToolByName(self.context, 'bika_setup_catalog') - # collect up all values into the bucket - for row in self.get_rows(3): - c_t = row['Client_title'] if row['Client_title'] else 'lab' - if c_t not in bucket: - bucket[c_t] = {} - s_t = row['SampleType_title'] if row['SampleType_title'] else s_t - if s_t not in bucket[c_t]: - bucket[c_t][s_t] = [] - service = bsc(portal_type='AnalysisService', title=row['service']) - if not service: - service = bsc(portal_type='AnalysisService', - getKeyword=row['service']) - try: - service = service[0].getObject() - bucket[c_t][s_t].append({ - 'keyword': service.getKeyword(), - 'min': row.get('min','0'), - 'max': row.get('max','0'), - 'minpanic': row.get('minpanic','0'), - 'maxpanic': row.get('maxpanic','0'), - 'error': row.get('error','0'), - }) - except IndexError: - warning = "Error with service name %s on sheet %s. Service not uploaded." - logger.warning(warning, row.get('service', ''), self.sheetname) - # write objects. - for c_t in bucket: - if c_t == 'lab': - folder = self.context.bika_setup.bika_analysisspecs - else: - folder = pc(portal_type='Client', title=c_t) - if (not folder or len(folder) != 1): - logger.warn("Client %s not found. Omiting client specifications." % c_t) - continue - folder = folder[0].getObject() - for s_t in bucket[c_t]: - resultsrange = bucket[c_t][s_t] - sampletype = bsc(portal_type='SampleType', title=s_t)[0] - _id = folder.invokeFactory('AnalysisSpec', id=tmpID()) - obj = folder[_id] - obj.edit( - title=sampletype.Title, - ResultsRange=resultsrange) - obj.setSampleType(sampletype.UID) - obj.unmarkCreationFlag() - renameAfterCreation(obj) - class Insurance_Companies(WorksheetImporter): def Import(self): From 2e7dbb3986586f42fd4ef664cf510d6262a62f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 22:01:15 +0100 Subject: [PATCH 19/37] Remove EnablePanicAlert setting from setup --- bika/health/content/bikasetup.py | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/bika/health/content/bikasetup.py b/bika/health/content/bikasetup.py index 63c36b9a..758f4eaf 100644 --- a/bika/health/content/bikasetup.py +++ b/bika/health/content/bikasetup.py @@ -18,14 +18,13 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. -from Products.Archetypes.Widget import BooleanWidget -from archetypes.schemaextender.interfaces import ISchemaExtender,\ - IOrderableSchemaExtender -from bika.lims.fields import * +from archetypes.schemaextender.interfaces import IOrderableSchemaExtender +from zope.component import adapts +from zope.interface import implements + from bika.health import bikaMessageFactory as _ +from bika.lims.fields import * from bika.lims.interfaces import IBikaSetup -from zope.component import adapts, getAdapters -from zope.interface import implements class BikaSetupSchemaExtender(object): @@ -33,15 +32,6 @@ class BikaSetupSchemaExtender(object): implements(IOrderableSchemaExtender) fields = [ - ExtBooleanField('EnablePanicAlert', - schemata="Analyses", - default=False, - widget=BooleanWidget( - label=_("Enable panic levels alert"), - description=_("Alert labmanagers with an email when an " - "analysis result exceeding a panic level is " - "submitted")) - ), ExtStringField('PatientConditionsHeightUnits', schemata="Cases", default=_("Feet/inches"), From 9524ec1a17c0367cecdeacb82fe0a9270d013232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 22:02:43 +0100 Subject: [PATCH 20/37] Remove setting EnableBikaAnalysisRequestRequestForm --- bika/health/content/bikasetup.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bika/health/content/bikasetup.py b/bika/health/content/bikasetup.py index 758f4eaf..2862901c 100644 --- a/bika/health/content/bikasetup.py +++ b/bika/health/content/bikasetup.py @@ -94,17 +94,6 @@ class BikaSetupSchemaExtender(object): "preferences' tab.") ) ), - ExtBooleanField('EnableBikaAnalysisRequestRequestForm', - schemata="Analyses", - default=False, - widget=BooleanWidget( - label=_("Enable Bika's analysis request form."), - description=_("It enables the secondary analysis request form. This request has some characteristic " - "features as allowing you to register more than one analysis request at the same time. " - "It's useful if you are supposed to register a big amount of analysis request at the same " - "time.") - ) - ), ExtBooleanField('CaseDoctorIsMandatory', schemata="Cases", default=True, From dd9cf52d45da1580b8526c0495d0f86ac7999ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 22 Jan 2020 22:04:02 +0100 Subject: [PATCH 21/37] Reimport skins in upgrade 1.2.3 (#165) --- bika/health/upgrade/v01_02_003.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 29e467fd..2ac95df6 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -18,6 +18,7 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. +from bika.health import DEFAULT_PROFILE_ID from bika.health import logger from bika.health.config import PROJECTNAME from bika.lims.upgrade import upgradestep @@ -43,6 +44,7 @@ def upgrade(tool): version)) # -------- ADD YOUR STUFF BELOW -------- + setup.runImportStepFromProfile(DEFAULT_PROFILE_ID, "skins") logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True From c48594c858f2b3ada813d445342104ecebc7d8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Tue, 28 Jan 2020 15:27:42 +0100 Subject: [PATCH 22/37] Better handling of ClientPatientID and Patient fields in Add Sample (#166) * Better handling of ClientPatientID and Patient fields in Add Sample These two fields must work together. When a Patient is selected by using Client Patient ID, the Patient field must be populated with same value and the other way round. * Changelog --- CHANGES.rst | 1 + bika/health/adapters/addsample.py | 29 +++++++++++++++++++++++++++++ bika/health/adapters/configure.zcml | 7 +++++++ 3 files changed, 37 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 8bab95f6..ca0529af 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ Changelog **Added** +- #166 Better handling of ClientPatientID and Patient fields in Add Sample **Changed** diff --git a/bika/health/adapters/addsample.py b/bika/health/adapters/addsample.py index 768d626c..77a9af04 100644 --- a/bika/health/adapters/addsample.py +++ b/bika/health/adapters/addsample.py @@ -195,6 +195,29 @@ def to_field_value(self, obj): "title": obj and api.get_title(obj) or ""} +class AddSamplePatientInfo(AddSampleObjectInfoAdapter): + """Returns the info metadata representation of a Patient object used in Add + Sample form + """ + def get_object_info(self): + object_info = self.get_base_info() + + # Default values for other fields when the Patient is selected + patient = self.context + field_values = { + "Patient": { + "uid": api.get_uid(patient), + "title": patient.getFullname(), + }, + "ClientPatientID": { + "uid": api.get_uid(patient), + "title": patient.getClientPatientID() or "", + } + } + object_info["field_values"] = field_values + return object_info + + class AddSampleFieldsFlush(object): """Health-specific flush of fields for Sample Add form. When the value for Client field changes, flush the fields "Patient", "Doctor" and "Batch" @@ -211,6 +234,12 @@ def get_flush_settings(self): "ClientPatientID", "Doctor", "Patient", + ], + "ClientPatientID": [ + "Patient", + ], + "Patient": [ + "ClientPatientID", ] } return flush_settings diff --git a/bika/health/adapters/configure.zcml b/bika/health/adapters/configure.zcml index 55e6efde..70dbb763 100644 --- a/bika/health/adapters/configure.zcml +++ b/bika/health/adapters/configure.zcml @@ -58,6 +58,13 @@ provides="bika.lims.interfaces.IAddSampleObjectInfo" name="senaite.health.addsample_batch_info" /> + + + Date: Sun, 2 Feb 2020 22:14:34 +0100 Subject: [PATCH 23/37] Compatibility with senaite.panic add-on --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index ca0529af..bede02bd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ Changelog **Added** +- #161 Compatibility with `senaite.panic` add-on - #166 Better handling of ClientPatientID and Patient fields in Add Sample **Changed** From b570bdca96151f2d966d94ad1553d0beed665ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 2 Feb 2020 23:10:14 +0100 Subject: [PATCH 24/37] Updated translations --- .../locales/es_AR/LC_MESSAGES/senaite.core.po | 502 ++++++------- .../es_AR/LC_MESSAGES/senaite.health.po | 695 +++++++++--------- .../locales/pl/LC_MESSAGES/senaite.core.po | 336 ++++----- .../locales/pl/LC_MESSAGES/senaite.health.po | 65 +- .../locales/zh_CN/LC_MESSAGES/senaite.core.po | 502 ++++++------- .../zh_CN/LC_MESSAGES/senaite.health.po | 666 ++++++++--------- 6 files changed, 1389 insertions(+), 1377 deletions(-) diff --git a/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po index 1f4b6ee8..d3eb1478 100644 --- a/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po @@ -1,10 +1,12 @@ +# Translators: +# ale meng , 2019 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: ale meng , 2019\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/senaite/teams/87046/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,1062 +20,1062 @@ msgstr "" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "Lista de los subtipos de agentes etiológicos." #: bika/health/content/patient.py:393 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "Lista de inmunizaciones administradas al paciente." #: bika/health/content/patient.py:257 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "Lista de tratamientos y drogas administradas al paciente" #: bika/health/content/patient.py:456 msgid "A list of places visited by the patient." -msgstr "" +msgstr "Lista de lugares visitados por el paciente." #: bika/health/browser/doctors/folder_view.py:69 #: bika/health/browser/patients/folder_view.py:107 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "Activo" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "Inmunización activa" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "Tratamiento activo" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "Agregar" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "IDs adicionales" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "Síntomas adicionales no cubiertos por los códigos del CIE pueden ser ingresados aquí." #: bika/health/content/patient.py:190 msgid "Additional identifiers" -msgstr "" +msgstr "Identificadores adicionales" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "Notas adicionales" #: bika/health/controlpanel/bika_aetiologicagents.py:44 msgid "Aetiologic Agents" -msgstr "" +msgstr "Agentes Etiológicos" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Agente Etiológico" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 msgid "Age" -msgstr "" +msgstr "Edad" #: bika/health/content/bikasetup.py:41 msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "Envío de un email de alerta a los labmanagers cuando un resultado de análisis excede los valores críticos" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 #: bika/health/browser/patients/folder_view.py:119 msgid "All" -msgstr "" +msgstr "Todo" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Permitir la distribución de resultados a los pacientes" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Permitir la distribución de resultados a éste paciente" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "Anónimo" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Aplica a" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "Dosis y administración apropiada" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "Asiático" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Asociar el doctor a un cliente. Este doctor no estará disponible para otros clientes." #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "Lote" #. Default: "Case ID" msgid "Batch ID" -msgstr "" +msgstr "Identificador de Lote" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "Lotes" #: bika/health/content/patient.py:136 msgid "Birth date" -msgstr "" +msgstr "Fecha de nacimiento" #: bika/health/content/patient.py:144 msgid "Birth date is estimated" -msgstr "" +msgstr "Fecha de nacimiento estimada" #: bika/health/content/patient.py:536 msgid "Birth place" -msgstr "" +msgstr "Lugar de nacimiento" #: bika/health/browser/patients/folder_view.py:87 msgid "BirthDate" -msgstr "" +msgstr "Fecha de nacimiento" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "Negro" #: bika/health/config.py:45 msgid "Both" -msgstr "" +msgstr "Ambos" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "Teléfono Empresarial" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "IDCP" #: bika/health/content/analysisrequest.py:178 msgid "Case" -msgstr "" +msgstr "Caso" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 msgid "Case ID" -msgstr "" +msgstr "Identificador de Caso" #: bika/health/controlpanel/bika_caseoutcomes.py:44 msgid "Case Outcomes" -msgstr "" +msgstr "Conclusiones del Caso" #: bika/health/controlpanel/bika_casestatuses.py:44 msgid "Case Statuses" -msgstr "" +msgstr "Estados del Caso" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "Clasificación Sindrómica de Casos" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "Conclusión del Caso" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "Estado de Caso" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "Casos" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "Categoría" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "Tratamiento causal" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "Cambios guardados." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Seleccionar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, severo) del síntoma" #: bika/health/content/patient.py:569 msgid "Citizenship" -msgstr "" +msgstr "Ciudadanía" #: bika/health/content/patient.py:590 msgid "Civil status" -msgstr "" +msgstr "Estado civil" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 #: bika/health/content/patient.py:71 msgid "Client" -msgstr "" +msgstr "Cliente" #: bika/health/content/batch.py:366 msgid "Client Case ID" -msgstr "" +msgstr "Identificador de Caso del Cliente" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "Identificador de Cliente" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "Identificador del paciente por el cliente" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 msgid "Client Patient ID" -msgstr "" +msgstr "Identificador de Paciente del Cliente" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "Identificador de Paciente del Cliente debe ser único" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "Clientes" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "Código" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "Grupos de Riesgo" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Nombre de la Compañía" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "Enviar por SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "Tratamiento Conservador" #: bika/health/content/patient.py:441 msgid "Country" -msgstr "" +msgstr "País" #: bika/health/content/patient.py:165 msgid "Country and state" -msgstr "" +msgstr "País y estado" #: bika/health/content/patient.py:378 msgid "Date" -msgstr "" +msgstr "Fecha" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "Por Defecto" #: bika/health/content/bikasetup.py:94 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "Preferencias de publicación para Pacientes predeterminada" #: bika/health/content/batch.py:171 #: bika/health/content/patient.py:203 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "Descripción" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "Enfermedad" #: bika/health/controlpanel/bika_diseases.py:49 msgid "Diseases" -msgstr "" +msgstr "Efermedades" #: bika/health/content/patient.py:83 msgid "District" -msgstr "" +msgstr "Distrito" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "Doctor" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "Identificador de Doctor" #: bika/health/content/bikasetup.py:132 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "El campo Doctor es obligatorio en los casos" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "Doctores" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "Identificador de Documento" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "Localización de Documento" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "Tipo de Documento" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "Versión de Documento" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "No Sabe" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "" +msgstr "Latente" #: bika/health/content/patient.py:242 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "Droga" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "Prohibición de Droga" #: bika/health/content/patient.py:309 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "Explicación de Prohibición de Droga" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "Explicaciones de Prohibición de Droga" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "Indicaciones de droga" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "Posología de droga" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "Conservación de la droga" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "Efectos colaterales de la droga" #: bika/health/controlpanel/bika_drugs.py:49 msgid "Drugs" -msgstr "" +msgstr "Drogas" #: bika/health/content/patient.py:375 msgid "EPI Number" -msgstr "" +msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 #: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "Dirección de correo electrónico" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" +msgstr "Tratamiento empírico" #: bika/health/content/bikasetup.py:121 msgid "Enable Bika's analysis request form." -msgstr "" +msgstr "Activar formulario de solicitud de análisis tipo BIKA" #: bika/health/content/bikasetup.py:40 msgid "Enable panic levels alert" -msgstr "" +msgstr "Activar alerta de valores críticos" #: bika/health/content/patient.py:244 msgid "End" -msgstr "" +msgstr "Fin" #: bika/health/controlpanel/bika_ethnicities.py:44 msgid "Ethnicities" -msgstr "" +msgstr "Etnias" #: bika/health/content/patient.py:547 msgid "Ethnicity" -msgstr "" +msgstr "Etnia" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "Nombre de Etnia" #: bika/health/content/patient.py:548 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "Ejemplo de etnia, Asiático, Africano, etc" #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "Tratamiento Sintomático" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Llamada fallida ajax: %s" #: bika/health/content/patient.py:583 msgid "Fathers name" -msgstr "" +msgstr "Nombres del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 #: bika/health/controlpanel/bika_vaccinationcenters.py:67 msgid "Fax" -msgstr "" +msgstr "Fax" #: bika/health/content/patient.py:605 msgid "Feature" -msgstr "" +msgstr "Característica" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "Pies/pulgadas" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "Femenino" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "Archivo" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, pueden ser incluido en los correos electrónicos de los pacientes si ésta opción está habilitada" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "Nombre completo" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "Nombre completo" #: bika/health/browser/patients/folder_view.py:77 #: bika/health/content/patient.py:120 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "Género" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "Las áreas geográficas pueden ser caracterizadas con alto, intermedio o bajo nivel de infección" #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "Distribución geográfica" #: bika/health/content/patient.py:701 msgid "Guarantor ID" -msgstr "" +msgstr "Identificador de garante" #: bika/health/content/patient.py:720 msgid "Guarantor's First Name" -msgstr "" +msgstr "Primer nombre del garante" #: bika/health/content/patient.py:736 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "Número de Teléfono del Garante (Empresa)" #: bika/health/content/patient.py:743 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "Número de Teléfono del Garante (Fijo)" #: bika/health/content/patient.py:750 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "Número de Teléfono del Garante (Celular)" #: bika/health/content/patient.py:711 msgid "Guarantor's Surname" -msgstr "" +msgstr "Apellido del Garante" #: bika/health/content/patient.py:729 msgid "Guarantor's postal address" -msgstr "" +msgstr "Dirección postal del garante" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "Hispánico o latino" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "Historial de Resultados" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "Horas de ayuno" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "Código CIE" #: bika/health/content/patient.py:183 msgid "Identifier" -msgstr "" +msgstr "Identificador" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "" +msgstr "Tipo de Identificador" #: bika/health/controlpanel/bika_identifiertypes.py:45 msgid "Identifier Types" -msgstr "" +msgstr "Tipos de Identificador" #: bika/health/content/patient.py:647 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente ." #: bika/health/content/bikasetup.py:84 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/patient.py:637 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que también se completarán más cambios en el Cliente para esta configuración." #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" +msgstr "Si se selecciona, la configuración para la distribución de informes de resultados a los pacientes se heredará de la Configuración de Bika, por lo que también se completarán los cambios adicionales en la Configuración de Bika para esta configuración." #: bika/health/content/bikasetup.py:50 msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "Si está habilitado, muestra automáticamente una ventana emergente de formulario de correo electrónico para alertar al cliente sobre resultados con valores críticos cuando se carga la vista Solicitud de Análisis" #: bika/health/content/patient.py:684 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "Si se selecciona, las facturas se enviarán a la compañía de seguros. En este caso, el número de seguro será obligatorio." #: bika/health/content/bikasetup.py:143 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "Si está seleccionado, los Identificadores de pacientes de los clientes serán forzados a ser únicos" #: bika/health/content/patient.py:376 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "Inmunización" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "Formulario de Inmunización" #: bika/health/controlpanel/bika_immunizations.py:49 msgid "Immunizations" -msgstr "" +msgstr "Inmunizaciones" #: bika/health/browser/patients/folder_view.py:113 msgid "Inactive" -msgstr "" +msgstr "Inactivo" #: bika/health/content/bikasetup.py:73 msgid "Inches" -msgstr "" +msgstr "Pulgadas" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "Formato incorrecto en '${title}', debería ser YYYY-MM-DD" #: bika/health/content/patient.py:636 msgid "Inherit default settings" -msgstr "" +msgstr "Heredar la configuración predeterminada" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "Heredar la configuración predeterminada para la distribución de resultados del paciente" #: bika/health/controlpanel/bika_insurancecompanies.py:43 msgid "Insurance Companies" -msgstr "" +msgstr "Compañías Aseguradoras" #: bika/health/content/patient.py:668 msgid "Insurance Company" -msgstr "" +msgstr "Compañía Aseguradora" #: bika/health/content/patient.py:676 msgid "Insurance Number" -msgstr "" +msgstr "Número de Asegurado" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "Fecha de Factura" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "Número de Factura" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "Facturas" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" +msgstr "Irregular" #: bika/health/content/bikasetup.py:122 msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" +msgstr "Habilita el formulario de solicitud de análisis secundario. Esta solicitud tiene algunas características que le permiten registrar más de una solicitud de análisis al mismo tiempo. Es útil si se supone que debe registrar una gran cantidad de solicitudes de análisis al mismo tiempo." #: bika/health/content/patient.py:320 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "Alergias conocidas del paciente para mantener información que puede ayudar a la interpretación de la reacción al medicamento" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "Efectos indeseables y conocidos del medicamento" #: bika/health/content/bikasetup.py:65 msgid "Lbs" -msgstr "" +msgstr "Libras" #: bika/health/content/patient.py:442 msgid "Location" -msgstr "" +msgstr "Ubicación" #: bika/health/config.py:28 msgid "Male" -msgstr "" +msgstr "Masculino" #: bika/health/content/analysisspec.py:50 #: bika/health/widgets/analysisspecificationwidget.py:41 msgid "Max panic" -msgstr "" +msgstr "Valor Crítico Máximo" #: bika/health/content/analysisspec.py:49 #: bika/health/widgets/analysisspecificationwidget.py:40 msgid "Min panic" -msgstr "" +msgstr "Valor Crítico Mínimo" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "Teléfono Celular" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "TeléfonoCelular" #: bika/health/content/patient.py:576 msgid "Mothers name" -msgstr "" +msgstr "Nombre de la madre" #: bika/health/controlpanel/bika_vaccinationcenters.py:61 msgid "Name" -msgstr "" +msgstr "Nombre" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "Americano nativo" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "Hawaiano o Isleño del Pacífico" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "Sin ciclo menstrual" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "No se ha definido el identificador de la solicitud" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "Hallazgos clínicos objetivos" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "Inicio" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "Fecha de inicio" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "Fecha estimada de inicio" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "Identificador de paciente (PID)" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "Tratamiento paliativo" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "Falta el parámetro '%s'" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "Inmunización pasiva" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "Paciente" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "Edad del paciente en la fecha de inicio del caso" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "Archivos del paciente" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 #: bika/health/browser/patients/folder_view.py:67 msgid "Patient ID" -msgstr "" +msgstr "Identificador del paciente" #: bika/health/content/patient.py:191 msgid "Patient additional identifiers" -msgstr "" +msgstr "Identificadores adicionales del paciente" #: bika/health/content/bikasetup.py:59 msgid "Patient condition height units" -msgstr "" +msgstr "Unidades de altura del paciente" #: bika/health/content/bikasetup.py:75 msgid "Patient condition waist units" -msgstr "" +msgstr "Unidades de perímetro de cintura del paciente" #: bika/health/content/bikasetup.py:67 msgid "Patient condition weight units" -msgstr "" +msgstr "Unidades de peso del paciente" #: bika/health/content/patient.py:505 msgid "Patient's past medical history." -msgstr "" +msgstr "Historial médico del paciente" #: bika/health/browser/patients/folder_view.py:46 msgid "Patients" -msgstr "" +msgstr "Pacientes" #: bika/health/controlpanel/bika_insurancecompanies.py:56 #: bika/health/controlpanel/bika_vaccinationcenters.py:65 msgid "Phone" -msgstr "" +msgstr "Número de Teléfono" #: bika/health/content/patient.py:597 msgid "Photo" -msgstr "" +msgstr "Foto" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "Corregir los errores indicados" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "Prevención" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "Tratamiento Profiláctico" #: bika/health/browser/doctors/folder_view.py:54 #: bika/health/browser/patients/folder_view.py:92 msgid "Primary Referrer" -msgstr "" +msgstr "Referencia Primaria" #: bika/health/content/patient.py:81 msgid "Province" -msgstr "" +msgstr "Provincia" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "Diagnóstico Presuntivo" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "Tratamiento Racional" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "Regular" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 #: bika/health/content/patient.py:224 msgid "Remarks" -msgstr "" +msgstr "Observaciones" #: bika/health/browser/analysis/resultoutofrange.py:114 msgid "Result exceeded panic level" -msgstr "" +msgstr "Resultado excede el valor crítico" #: bika/health/browser/analysis/resultoutofrange.py:111 msgid "Result in shoulder panic range" -msgstr "" +msgstr "Resultado dentro del rango crítico" #: bika/health/content/bikasetup.py:107 #: bika/health/content/client.py:71 #: bika/health/content/patient.py:655 msgid "Results attachments permitted" -msgstr "" +msgstr "Permitido el adjuntado de resultados" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "Seleccione un tipo de inmunización.
La inmunización activa implica la introducción de una molécula extraña en el cuerpo, por lo que es el propio cuerpo el que genera la inmunidad contra el antígeno. La vacunación es una forma activa de inmunización.
La inmunización pasiva es donde los elementos pre-sintetizados del sistema inmune se transfieren a una persona para que el cuerpo no necesite producir estos elementos por sí mismo. Actualmente, los anticuerpos pueden usarse para la inmunización pasiva" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "Seleccionar el tipo de tratamiento" #: bika/health/content/bikasetup.py:95 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." #: bika/health/content/patient.py:683 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "Enviar facturas a la compañía de seguros" #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "Servicio '%s' no encontrado para '%s'" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "Servicio no definido" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "Niveles de severidad permitido" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "Tratamiento del Shock" #: bika/health/content/bikasetup.py:133 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" +msgstr "¿Debería ser el campo Doctor obligatorio cuando se crea un caso?" #: bika/health/content/bikasetup.py:49 msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "Mostrar una ventana emergente en el correo electrónico del cliente cuando el un resultado excede un valor crítico" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "Tratamiento específico" #: bika/health/content/patient.py:243 msgid "Start" -msgstr "" +msgstr "Comienzo" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "Hallazgos clínicos subjetivos" #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "Subtotal" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "Subtipo" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "Tratamiento de soporte" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "Síntoma" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "Síntomas" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "Síntomas para los cuales el medicamento es adecuado" #: bika/health/content/patient.py:702 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "El número de identificación (número de seguro) de la persona cuyo contrato cubre al paciente." #: bika/health/content/patient.py:693 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "El paciente y el garante son la misma persona." #: bika/health/content/patient.py:692 msgid "The patient is the guarantor." -msgstr "" +msgstr "El paciente es el garante." #: bika/health/content/batch.py:138 #: bika/health/content/patient.py:79 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "Título" #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "Total" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "Transmisión" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "Tratamiento" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "Documento del tratamiento" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "Cuidados en el tratamiento" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "Procedimiento del tratamiento" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "Tipo de tratamiento" #: bika/health/controlpanel/bika_treatments.py:49 msgid "Treatments" -msgstr "" +msgstr "Tratamientos" #. Default: "End date" #: bika/health/content/patient.py:440 msgid "Trip End Date" -msgstr "" +msgstr "Fecha de finalización del viaje" #. Default: "Start date" #: bika/health/content/patient.py:439 msgid "Trip Start Date" -msgstr "" +msgstr "Fecha de inicio del viaje" #: bika/health/content/bikasetup.py:60 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "Use el símbolo '/' para permitir el envío de unidades múltiples" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "Nombre de Usuario" #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "IVA" #: bika/health/content/patient.py:377 msgid "Vaccination Center" -msgstr "" +msgstr "Centro de Vacunación" #: bika/health/controlpanel/bika_vaccinationcenters.py:52 msgid "Vaccination Centers" -msgstr "" +msgstr "Centros de Vacunación" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" +msgstr "Validación fallida: '${value}' no es único" #: bika/health/widgets/analysisspecificationwidget.py:124 msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" +msgstr "Validación fallida: el valor crítico máximo debe ser mayor que el valor crítico mínimo" #: bika/health/widgets/analysisspecificationwidget.py:114 msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "Validación fallida: el valor crítico mínimo debe ser numérico" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "Blanco" #: bika/health/browser/analysis/resultoutofrange.py:106 msgid "maxpanic" -msgstr "" +msgstr "valor crítico máximo" #: bika/health/browser/analysis/resultoutofrange.py:105 msgid "minpanic" -msgstr "" +msgstr "valor crítico mínimo" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "Conservación" diff --git a/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po index e5129477..4133ba77 100644 --- a/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po @@ -1,10 +1,12 @@ +# Translators: +# ale meng , 2019 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: ale meng , 2019\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/senaite/teams/87046/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,1494 +20,1495 @@ msgstr "" #: bika/health/impress/reports/Default.pt:295 msgid "(estimated)" -msgstr "" +msgstr "(estimado)" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:29 msgid "-" -msgstr "" +msgstr "-" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "Lista de los subtipos de agentes etiológicos." #: bika/health/content/patient.py:393 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "Lista de inmunizaciones administradas al paciente." #: bika/health/content/patient.py:257 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "Lista de tratamientos y drogas administradas al paciente" #: bika/health/content/patient.py:456 msgid "A list of places visited by the patient." -msgstr "" +msgstr "Lista de lugares visitados por el paciente." #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Activate" -msgstr "" +msgstr "Activado" #: bika/health/browser/doctors/folder_view.py:69 #: bika/health/browser/patients/folder_view.py:107 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "Activo" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "Inmunización activa" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "Tratamiento activo" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "Agregar" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "IDs adicionales" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "Síntomas adicionales no cubiertos por los códigos del CIE pueden ser ingresados aquí." #: bika/health/content/patient.py:190 msgid "Additional identifiers" -msgstr "" +msgstr "Identificadores adicionales" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "Notas adicionales" #: bika/health/impress/reports/Default.pt:306 msgid "Address" -msgstr "" +msgstr "Dirección" #: bika/health/controlpanel/bika_aetiologicagents.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Aetiologic Agents" -msgstr "" +msgstr "Agentes Etiológicos" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Agente Etiológico" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 msgid "Age" -msgstr "" +msgstr "Edad" #: bika/health/content/bikasetup.py:41 msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "Envío de un email de alerta a los labmanagers cuando un resultado de análisis excede los valores críticos" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 #: bika/health/browser/patients/folder_view.py:119 msgid "All" -msgstr "" +msgstr "Todo" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Permitir la distribución de resultados a los pacientes" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Permitir la distribución de resultados a éste paciente" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:83 msgid "Analysis Profiles" -msgstr "" +msgstr "Perfiles de Análisis" #: bika/health/impress/reports/Default.pt:126 msgid "Analysis Report" -msgstr "" +msgstr "Reporte de Análisis" #: bika/health/impress/reports/Default.pt:702 msgid "Analysis results relate only to the samples tested." -msgstr "" +msgstr "Resultados de análisis relacionados sólo a la muestra testeada" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "Anónimo" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Aplica a" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "Dosis y administración apropiada" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "Asiático" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Asociar el doctor a un cliente. Este doctor no estará disponible para otros clientes." #: bika/health/impress/reports/Default.pt:607 msgid "Attachment for" -msgstr "" +msgstr "Adjuntado por" #: bika/health/impress/reports/Default.pt:591 msgid "Attachments for ${DYNAMIC_CONTENT}" -msgstr "" +msgstr "Adjunto por ${DYNAMIC_CONTENT}" #: bika/health/impress/reports/Default.pt:26 msgid "Attachments per Row" -msgstr "" +msgstr "Adjuntos por Fila" #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "Lote" #: bika/health/browser/batch/publish.pt:52 msgid "Batch ID" -msgstr "" +msgstr "Identificador de Lote" #: bika/health/impress/reports/Default.pt:436 msgid "Batch Labels" -msgstr "" +msgstr "Etiquetas de Lote" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "Lotes" #: bika/health/content/patient.py:136 msgid "Birth date" -msgstr "" +msgstr "Fecha de nacimiento" #: bika/health/content/patient.py:144 msgid "Birth date is estimated" -msgstr "" +msgstr "Fecha de Nacimiento es estimada" #: bika/health/content/patient.py:536 msgid "Birth place" -msgstr "" +msgstr "Lugar de nacimiento" #: bika/health/browser/patients/folder_view.py:87 msgid "BirthDate" -msgstr "" +msgstr "Fecha de nacimiento" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "Negro" #: bika/health/config.py:45 #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:219 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:73 msgid "Both" -msgstr "" +msgstr "Ambos" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "Teléfono Empresarial" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "IDCP" #: bika/health/content/analysisrequest.py:178 msgid "Case" -msgstr "" +msgstr "Caso" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 #: bika/health/impress/reports/Default.pt:385 msgid "Case ID" -msgstr "" +msgstr "Identificador de Caso" #: bika/health/controlpanel/bika_caseoutcomes.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Outcomes" -msgstr "" +msgstr "Conclusiones del Caso" #: bika/health/controlpanel/bika_casestatuses.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Statuses" -msgstr "" +msgstr "Estados del Caso" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "Clasificación Sindrómica de Casos" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "Conclusión del Caso" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "Estado de Caso" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "Casos" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "Categoría" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "Tratamiento causal" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "Cambios guardados." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Seleccionar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, severo) del síntoma" #: bika/health/content/patient.py:569 msgid "Citizenship" -msgstr "" +msgstr "Ciudadanía" #: bika/health/content/patient.py:590 msgid "Civil status" -msgstr "" +msgstr "Estado civil" #: bika/health/browser/batch/publish.pt:60 #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 msgid "Client" -msgstr "" +msgstr "Cliente" #: bika/health/content/batch.py:366 #: bika/health/impress/reports/Default.pt:362 msgid "Client Case ID" -msgstr "" +msgstr "Identificador de Caso del Cliente" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "Identificador de Cliente" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:105 msgid "Client Order Number" -msgstr "" +msgstr "Número de Orden de Cliente" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "PID de Cliente" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" -msgstr "" +msgstr "Identificador de Paciente del Cliente" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "Identificador de Paciente del Cliente debe ser único" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:56 msgid "Client Reference" -msgstr "" +msgstr "Referencia de Cliente" #: bika/health/impress/reports/Default.pt:370 msgid "Client Sample ID" -msgstr "" +msgstr "Identificador de Muestra del Cliente" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "Clientes" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "Código" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "Grupos de Riesgo" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Nombre de la Compañía" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "Enviar por SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "Tratamiento Conservador" #: bika/health/content/patient.py:441 msgid "Country" -msgstr "" +msgstr "País" #: bika/health/content/patient.py:165 msgid "Country and state" -msgstr "" +msgstr "País y estado" #: bika/health/impress/reports/Default.pt:21 msgid "Custom Report Options" -msgstr "" +msgstr "Opciones de Reporte Personalizados" #: bika/health/content/patient.py:378 msgid "Date" -msgstr "" +msgstr "Fecha" #: bika/health/impress/reports/Default.pt:409 msgid "Date Collected" -msgstr "" +msgstr "Fecha de Recolección" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:132 #: bika/health/impress/reports/Default.pt:421 msgid "Date Published" -msgstr "" +msgstr "Fecha de Publicación" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:96 #: bika/health/impress/reports/Default.pt:413 msgid "Date Received" -msgstr "" +msgstr "Fecha de Recepción" #: bika/health/impress/reports/Default.pt:417 msgid "Date Verified" -msgstr "" +msgstr "Fecha de Validación" #: bika/health/impress/reports/Default.pt:292 msgid "Date of Birth" -msgstr "" +msgstr "Fecha de Nacimiento" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:20 msgid "Day 1" -msgstr "" +msgstr "Día 1" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:31 msgid "Day 2" -msgstr "" +msgstr "Día 2" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:42 msgid "Day 3" -msgstr "" +msgstr "Día 3" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:59 msgid "Days" -msgstr "" +msgstr "Días" #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Deactivate" -msgstr "" +msgstr "Desactivar" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "Por Defecto" #: bika/health/content/bikasetup.py:94 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "Preferencias de publicación para Pacientes por defecto" #: bika/health/content/batch.py:171 #: bika/health/content/patient.py:203 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "Descripción" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:197 msgid "Discount" -msgstr "" +msgstr "Descuento" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "Enfermedad" #: bika/health/controlpanel/bika_diseases.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Diseases" -msgstr "" +msgstr "Efermedades" #: bika/health/content/patient.py:83 msgid "District" -msgstr "" +msgstr "Distrito" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "Doctor" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "Identificador de Doctor" #: bika/health/content/bikasetup.py:132 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "El campo Doctor es obligatorio en los casos" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "Doctores" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "Identificador de Documento" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "Localización de Documento" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "Tipo de Documento" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "Versión de Documento" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "No Sabe" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "" +msgstr "Latente" #: bika/health/content/patient.py:242 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "Droga" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "Prohibición de Droga" #: bika/health/content/patient.py:309 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "Explicación de Prohibición de Droga" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "Explicaciones de Prohibición de Droga" #: bika/health/profiles/default/controlpanel.xml msgid "Drug Prohibitions" -msgstr "" +msgstr "Prohibición de Droga" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "Indicaciones de droga" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "Posología de droga" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "Conservación de la droga" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "Efectos colaterales de la droga" #: bika/health/controlpanel/bika_drugs.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Drugs" -msgstr "" +msgstr "Drogas" #: bika/health/content/patient.py:375 msgid "EPI Number" -msgstr "" +msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 #: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "Dirección de correo electrónico" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" +msgstr "Tratamiento empírico" #: bika/health/content/bikasetup.py:121 msgid "Enable Bika's analysis request form." -msgstr "" +msgstr "Activar formulario de solicitud de análisis tipo BIKA" #: bika/health/content/bikasetup.py:40 msgid "Enable panic levels alert" -msgstr "" +msgstr "Activar alerta de valores críticos" #: bika/health/content/patient.py:244 msgid "End" -msgstr "" +msgstr "Fin" #: bika/health/controlpanel/bika_ethnicities.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Ethnicities" -msgstr "" +msgstr "Etnias" #: bika/health/content/patient.py:547 msgid "Ethnicity" -msgstr "" +msgstr "Etnia" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "Nombre de Etnia" #: bika/health/content/patient.py:548 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "Ejemplo de etnia, Asiático, Africano, etc" #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "Tratamiento Sintomático" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Llamada fallida ajax: %s" #: bika/health/content/patient.py:583 msgid "Fathers name" -msgstr "" +msgstr "Nombre del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 #: bika/health/controlpanel/bika_vaccinationcenters.py:67 msgid "Fax" -msgstr "" +msgstr "Fax" #: bika/health/content/patient.py:605 msgid "Feature" -msgstr "" +msgstr "Característica" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "Pies/pulgadas" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "Femenino" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "Archivo" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, pueden ser incluido en los correos electrónicos de los pacientes si ésta opción está habilitada" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." #: bika/health/impress/reports/Default.pt:614 msgid "Filename:" -msgstr "" +msgstr "Nombre de archivo" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:21 msgid "First day of last menses" -msgstr "" +msgstr "Primer día de la última menstruación (FUM)" #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "Nombre completo" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "Nombre completo" #: bika/health/browser/patients/folder_view.py:77 #: bika/health/content/patient.py:120 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "Género" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "Las áreas geográficas pueden ser caracterizadas con alto, intermedio o bajo nivel de infección" #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "Distribución geográfica" #: bika/health/content/patient.py:701 msgid "Guarantor ID" -msgstr "" +msgstr "Identificador de garante" #: bika/health/content/patient.py:720 msgid "Guarantor's First Name" -msgstr "" +msgstr "Primer nombre del garante" #: bika/health/content/patient.py:736 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "Número de Teléfono del Garante (Empresa)" #: bika/health/content/patient.py:743 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "Número de Teléfono del Garante (Fijo)" #: bika/health/content/patient.py:750 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "Número de Teléfono del Garante (Celular)" #: bika/health/content/patient.py:711 msgid "Guarantor's Surname" -msgstr "" +msgstr "Apellido del Garante" #: bika/health/content/patient.py:729 msgid "Guarantor's postal address" -msgstr "" +msgstr "Dirección postal del garante" #: bika/health/configure.zcml:52 msgid "Health Care extension for SENAITE" -msgstr "" +msgstr "Extensión de Salud para SENAITE" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:20 msgid "Height" -msgstr "" +msgstr "Altura" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "Hispánico o latino" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "Historial de Resultados" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "Horas de ayuno" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:55 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:32 msgid "Hysterectomy" -msgstr "" +msgstr "Histerestomía" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "Código CIE" #: bika/health/content/patient.py:183 msgid "Identifier" -msgstr "" +msgstr "Identificador" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "" +msgstr "Tipo de Identificador" #: bika/health/controlpanel/bika_identifiertypes.py:45 #: bika/health/profiles/default/controlpanel.xml msgid "Identifier Types" -msgstr "" +msgstr "Tipos de Identificador" #: bika/health/content/patient.py:647 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente ." #: bika/health/content/bikasetup.py:84 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/patient.py:637 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que también se completarán más cambios en el Cliente para esta configuración." #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" +msgstr "Si se selecciona, la configuración para la distribución de informes de resultados a los pacientes se heredará de la Configuración de Bika, por lo que también se completarán los cambios adicionales en la Configuración de Bika para esta configuración." #: bika/health/content/bikasetup.py:50 msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "Si está habilitado, muestra automáticamente una ventana emergente de formulario de correo electrónico para alertar al cliente sobre resultados con valores críticos cuando se carga la vista Solicitud de Análisis" #: bika/health/content/patient.py:684 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "Si se selecciona, las facturas se enviarán a la compañía de seguros. En este caso, el número de seguro será obligatorio." #: bika/health/content/bikasetup.py:143 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "Si está seleccionado, los Identificadores de pacientes de los clientes serán forzados a ser únicos" #: bika/health/content/patient.py:376 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "Inmunización" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "Formulario de Inmunización" #: bika/health/controlpanel/bika_immunizations.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Immunizations" -msgstr "" +msgstr "Inmunizaciones" #: bika/health/browser/patients/folder_view.py:113 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" -msgstr "" +msgstr "Inactivo" #: bika/health/content/bikasetup.py:73 msgid "Inches" -msgstr "" +msgstr "Pulgadas" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "Formato incorrecto en '${title}', debería ser YYYY-MM-DD" #: bika/health/content/patient.py:636 msgid "Inherit default settings" -msgstr "" +msgstr "Heredar la configuración predeterminada" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "Heredar la configuración predeterminada para la distribución de resultados del paciente" #: bika/health/controlpanel/bika_insurancecompanies.py:43 #: bika/health/profiles/default/controlpanel.xml msgid "Insurance Companies" -msgstr "" +msgstr "Compañías Aseguradoras" #: bika/health/content/patient.py:668 msgid "Insurance Company" -msgstr "" +msgstr "Compañía Aseguradora" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 #: bika/health/content/patient.py:676 msgid "Insurance Number" -msgstr "" +msgstr "Número de Asegurado" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:17 msgid "Invoice" -msgstr "" +msgstr "Factura" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "Fecha de Factura" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:45 msgid "Invoice ID" -msgstr "" +msgstr "Identificador de Factura" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "Número de Factura" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:30 msgid "Invoice To" -msgstr "" +msgstr "Factura a" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "Facturas" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" +msgstr "Irregular" #: bika/health/content/bikasetup.py:122 msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" +msgstr "Habilita el formulario de solicitud de análisis secundario. Esta solicitud tiene algunas características que le permiten registrar más de una solicitud de análisis al mismo tiempo. Es útil si se supone que debe registrar una gran cantidad de solicitudes de análisis al mismo tiempo." #: bika/health/content/patient.py:320 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "Alergias conocidas del paciente para mantener información que puede ayudar a la interpretación de la reacción al medicamento" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "Efectos indeseables y conocidos del medicamento" #: bika/health/content/bikasetup.py:65 msgid "Lbs" -msgstr "" +msgstr "Libras" #: bika/health/content/patient.py:442 msgid "Location" -msgstr "" +msgstr "Ubicación" #: bika/health/config.py:28 msgid "Male" -msgstr "" +msgstr "Masculino" #: bika/health/content/analysisspec.py:50 #: bika/health/widgets/analysisspecificationwidget.py:41 msgid "Max panic" -msgstr "" +msgstr "Valor Crítico Máximo" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" -msgstr "" +msgstr "Tipo de ciclo menstrual" #: bika/health/impress/reports/Default.pt:697 msgid "Methods included in the ${accreditation_body} schedule of Accreditation for this Laboratory. Analysis remarks are not accredited" -msgstr "" +msgstr "Métodos incluidos en el programa de Acreditación ${accreditation_body} para este Laboratorio. Los comentarios de análisis no están acreditados" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:24 msgid "Mild" -msgstr "" +msgstr "Leve" #: bika/health/content/analysisspec.py:49 #: bika/health/widgets/analysisspecificationwidget.py:40 msgid "Min panic" -msgstr "" +msgstr "Valor Crítico Mínimo" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "Teléfono Celular" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "TeléfonoCelular" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:26 msgid "Moderate" -msgstr "" +msgstr "Moderado" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:46 msgid "Month" -msgstr "" +msgstr "Mes" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:52 msgid "Months" -msgstr "" +msgstr "Meses" #: bika/health/content/patient.py:576 msgid "Mothers name" -msgstr "" +msgstr "Nombre de la madre" #: bika/health/controlpanel/bika_vaccinationcenters.py:61 msgid "Name" -msgstr "" +msgstr "Nombre" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "Americano nativo" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "Hawaiano o Isleño del Pacífico" #: bika/health/browser/patient/historicresults.pt:254 msgid "No historic results found" -msgstr "" +msgstr "No se encontraron resultados en el historial" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "Sin ciclo menstrual" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "No se ha definido el identificador de la solicitud" #: bika/health/impress/reports/Default.pt:684 msgid "Not invoiced" -msgstr "" +msgstr "Sin facturación" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:70 msgid "Num" -msgstr "" +msgstr "Num" #: bika/health/impress/reports/Default.pt:36 msgid "Number of attachments rendered within one row per Sample" -msgstr "" +msgstr "Número de archivos adjuntos representados dentro de una fila por muestra" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "Hallazgos clínicos objetivos" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:214 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:68 msgid "One" -msgstr "" +msgstr "Uno" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "Inicio" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "Fecha de inicio" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "Fecha estimada de inicio" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:67 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:58 msgid "Ovaries removed" -msgstr "" +msgstr "Ovarios extirpados" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "Identificador de paciente (PID)" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "Tratamiento paliativo" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "Falta el parámetro '%s'" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "Inmunización pasiva" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "Paciente" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "Edad del paciente en la fecha de inicio del caso" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "Archivos del paciente" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 #: bika/health/browser/patients/folder_view.py:67 msgid "Patient ID" -msgstr "" +msgstr "Identificador del paciente" #: bika/health/impress/reports/Default.pt:299 msgid "Patient Identifiers" -msgstr "" +msgstr "Identificadores de Pacientes" #: bika/health/impress/reports/Default.pt:277 msgid "Patient Information" -msgstr "" +msgstr "Información del Paciente" #: bika/health/content/patient.py:191 msgid "Patient additional identifiers" -msgstr "" +msgstr "Identificadores adicionales del paciente" #: bika/health/content/bikasetup.py:59 msgid "Patient condition height units" -msgstr "" +msgstr "Unidades de altura del paciente" #: bika/health/content/bikasetup.py:75 msgid "Patient condition waist units" -msgstr "" +msgstr "Unidades de perímetro de cintura del paciente" #: bika/health/content/bikasetup.py:67 msgid "Patient condition weight units" -msgstr "" +msgstr "Unidades de peso del paciente" #: bika/health/content/patient.py:505 msgid "Patient's past medical history." -msgstr "" +msgstr "Historial médico del paciente" #: bika/health/browser/patients/folder_view.py:46 msgid "Patients" -msgstr "" +msgstr "Pacientes" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 #: bika/health/controlpanel/bika_vaccinationcenters.py:65 msgid "Phone" -msgstr "" +msgstr "Número de Teléfono" #: bika/health/impress/reports/Default.pt:319 msgid "Phone (home)" -msgstr "" +msgstr "Número de Teléfono (Fijo)" #: bika/health/impress/reports/Default.pt:323 msgid "Phone (mobile)" -msgstr "" +msgstr "Número de Teléfono (Celular)" #: bika/health/content/patient.py:597 msgid "Photo" -msgstr "" +msgstr "Foto" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "Corregir los errores indicados" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:156 msgid "Position" -msgstr "" +msgstr "Posición" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:43 msgid "Pregnant" -msgstr "" +msgstr "Embarazada" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "Prevención" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "Tratamiento Profiláctico" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:158 msgid "Price" -msgstr "" +msgstr "Precio" #: bika/health/browser/doctors/folder_view.py:54 #: bika/health/browser/patients/folder_view.py:92 msgid "Primary Referrer" -msgstr "" +msgstr "Referencia Primaria" #: bika/health/browser/batch/publish.pt:124 msgid "Print date:" -msgstr "" +msgstr "Fecha de Impresión" #: bika/health/content/patient.py:81 msgid "Province" -msgstr "" +msgstr "Provincia" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "Diagnóstico Presuntivo" #: bika/health/impress/reports/Default.pt:256 msgid "Provisional report" -msgstr "" +msgstr "Reporte Provisorio" #: bika/health/impress/reports/Default.pt:425 msgid "Published by" -msgstr "" +msgstr "Publicado por" #: bika/health/impress/reports/Default.pt:570 msgid "QC Results" -msgstr "" +msgstr "Resultados de CC" #: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" -msgstr "" +msgstr "Rango" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "Tratamiento Racional" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "Regular" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 #: bika/health/content/patient.py:224 msgid "Remarks" -msgstr "" +msgstr "Observaciones" #: bika/health/impress/reports/Default.pt:630 msgid "Responsibles" -msgstr "" +msgstr "Responsables" #: bika/health/impress/reports/Default.pt:479 msgid "Result" -msgstr "" +msgstr "Resultado" #: bika/health/browser/analysis/resultoutofrange.py:114 msgid "Result exceeded panic level" -msgstr "" +msgstr "Resultado excede el valor crítico" #: bika/health/browser/analysis/resultoutofrange.py:111 msgid "Result in shoulder panic range" -msgstr "" +msgstr "Resultado dentro del rango crítico" #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." -msgstr "" +msgstr "Resultado fuera del rango especificado por el cliente." #: bika/health/impress/reports/Default.pt:449 msgid "Results" -msgstr "" +msgstr "Resultados" #: bika/health/content/bikasetup.py:107 #: bika/health/content/client.py:71 #: bika/health/content/patient.py:655 msgid "Results attachments permitted" -msgstr "" +msgstr "Permitido el adjuntado de resultados" #: bika/health/impress/reports/Default.pt:555 msgid "Results interpretation" -msgstr "" +msgstr "Interpretación de resultados" #: bika/health/configure.zcml:52 msgid "SENAITE Health" -msgstr "" +msgstr "SENAITE Salud" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:74 #: bika/health/impress/reports/Default.pt:393 msgid "Sample ID" -msgstr "" +msgstr "Identificador de Muestra" #: bika/health/impress/reports/Default.pt:351 msgid "Sample Information" -msgstr "" +msgstr "Información de Muestra" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:114 #: bika/health/impress/reports/Default.pt:405 msgid "Sample Point" -msgstr "" +msgstr "Punto de Muestreo" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:65 #: bika/health/impress/reports/Default.pt:401 msgid "Sample Type" -msgstr "" +msgstr "Tipo de Muestra" #: bika/health/skins/bika_health/patient_edit.pt:12 msgid "Save and create Clinical Case" -msgstr "" +msgstr "Guardar y crear el Caso Clínico" #: bika/health/skins/bika_health/batch_edit.pt:12 #: bika/health/skins/bika_health/patient_edit.pt:20 msgid "Save and create Sample" -msgstr "" +msgstr "Guardar y crear Muestra" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "Seleccione un tipo de inmunización.
La inmunización activa implica la introducción de una molécula extraña en el cuerpo, por lo que es el propio cuerpo el que genera la inmunidad contra el antígeno. La vacunación es una forma activa de inmunización.
La inmunización pasiva es donde los elementos pre-sintetizados del sistema inmune se transfieren a una persona para que el cuerpo no necesite producir estos elementos por sí mismo. Actualmente, los anticuerpos pueden usarse para la inmunización pasiva" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "Seleccionar el tipo de tratamiento" #: bika/health/content/bikasetup.py:95 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." #: bika/health/content/patient.py:683 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "Enviar facturas a la compañía de seguros" #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "Servicio '%s' no encontrado para '%s'" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "Servicio no definido" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:28 msgid "Severe" -msgstr "" +msgstr "Severo" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "Niveles de severidad permitido" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "Tratamiento del Shock" #: bika/health/content/bikasetup.py:133 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" +msgstr "¿Debería ser el campo Doctor obligatorio cuando se crea un caso?" #: bika/health/content/bikasetup.py:49 msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "Mostrar una ventana emergente en el correo electrónico del cliente cuando el un resultado excede un valor crítico" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "Tratamiento específico" #: bika/health/content/patient.py:243 msgid "Start" -msgstr "" +msgstr "Comienzo" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "Hallazgos clínicos subjetivos" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:188 #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "Subtotal" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "Subtipo" #: bika/health/impress/reports/Default.pt:194 msgid "Supervisor" -msgstr "" +msgstr "Supervisor" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "Tratamiento de soporte" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "Síntoma" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "Síntomas" #: bika/health/profiles/default/controlpanel.xml msgid "Symptoms and Conditions" -msgstr "" +msgstr "Síntomas y condiciones" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "Síntomas para los cuales el medicamento es adecuado" #: bika/health/profiles/default/controlpanel.xml msgid "Syndromes" -msgstr "" +msgstr "síndromes" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:207 msgid "Taxes" -msgstr "" +msgstr "Impuestos" #: bika/health/browser/patient/historicresults.pt:213 msgid "Test" -msgstr "" +msgstr "Test" #: bika/health/impress/reports/Default.pt:713 msgid "Test results are at a ${lab_confidence}% confidence level" -msgstr "" +msgstr "Los resultados de la prueba tienen un nivel de confianza de ${lab_confidence}%" #: bika/health/content/patient.py:702 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "El número de identificación (número de seguro) de la persona cuyo contrato cubre al paciente." #: bika/health/content/patient.py:693 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "El paciente y el garante son la misma persona." #: bika/health/content/patient.py:692 msgid "The patient is the guarantor." -msgstr "" +msgstr "El paciente es el garante." #: bika/health/impress/reports/Default.pt:247 msgid "This Sample has been invalidated due to erroneously published results" -msgstr "" +msgstr "Esta muestra ha sido invalidada debido a resultados publicados erróneamente" #: bika/health/impress/reports/Default.pt:250 msgid "This Sample has been replaced by" -msgstr "" +msgstr "Esta muestra ha sido reemplazada por" #: bika/health/impress/reports/Default.pt:709 msgid "This document shall not be reproduced except in full, without the written approval of ${name_lab}" -msgstr "" +msgstr "Este documento no se reproducirá excepto en su totalidad, sin la aprobación por escrito de $ {name_lab}" #: bika/health/content/batch.py:138 #: bika/health/content/patient.py:79 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "Título" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:216 #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "Total" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "Transmisión" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "Tratamiento" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "Documento del tratamiento" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "Cuidados en el tratamiento" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "Procedimiento del tratamiento" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "Tipo de tratamiento" #: bika/health/controlpanel/bika_treatments.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Treatments" -msgstr "" +msgstr "Tratamientos" #. Default: "End date" #: bika/health/content/patient.py:440 msgid "Trip End Date" -msgstr "" +msgstr "Fecha de finalización del viaje" #. Default: "Start date" #: bika/health/content/patient.py:439 msgid "Trip Start Date" -msgstr "" +msgstr "Fecha de inicio del viaje" #: bika/health/impress/reports/Default.pt:482 msgid "Unit" -msgstr "" +msgstr "Unidad" #: bika/health/browser/patient/historicresults.pt:217 msgid "Units" -msgstr "" +msgstr "Unidades" #: bika/health/content/bikasetup.py:60 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "Use el símbolo '/' para permitir el envío de unidades múltiples" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "Nombre de Usuario" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:157 #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "IVA" #: bika/health/content/patient.py:377 msgid "Vaccination Center" -msgstr "" +msgstr "Centro de Vacunación" #: bika/health/controlpanel/bika_vaccinationcenters.py:52 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" -msgstr "" +msgstr "Centros de Vacunación" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" +msgstr "Validación fallida: '${value}' no es único" #: bika/health/widgets/analysisspecificationwidget.py:124 msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" +msgstr "Validación fallida: el valor crítico máximo debe ser mayor que el valor crítico mínimo" #: bika/health/widgets/analysisspecificationwidget.py:114 msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "Validación fallida: el valor crítico mínimo debe ser numérico" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" -msgstr "" +msgstr "Validado por:" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:52 msgid "Waist" -msgstr "" +msgstr "Cintura" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:36 msgid "Weight" -msgstr "" +msgstr "Peso" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "Blanco" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:58 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:38 msgid "Year" -msgstr "" +msgstr "Año" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:46 msgid "Years" -msgstr "" +msgstr "Años" #. Default: "${Y}-${m}-${d} ${I}:${M} ${p}" #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_long" -msgstr "" +msgstr "formato_fecha_larga" #. Default: "${Y}-${m}-${d}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_short" -msgstr "" +msgstr "formato_fecha_corta" #. Date format used with the datepicker jqueryui plugin. #. Please only use 'dd', 'mm', 'yy', '-', '/', '.' in this string. #. Default: "mm/dd/yy" +#, fuzzy msgid "date_format_short_datepicker" -msgstr "" +msgstr "formato_fecha_corta_selector de fechas" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:26 msgid "days" -msgstr "" +msgstr "días" #: bika/health/browser/analysis/resultoutofrange.py:106 msgid "maxpanic" -msgstr "" +msgstr "valor crítico máximo" #: bika/health/browser/analysis/resultoutofrange.py:105 msgid "minpanic" -msgstr "" +msgstr "valor crítico mínimo" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" -msgstr "" +msgstr "Meses" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "Conservación" #: bika/health/browser/patient/allergies.pt:22 #: bika/health/browser/patient/chronicconditions.pt:22 #: bika/health/browser/patient/immunizationhistory.pt:22 msgid "save" -msgstr "" +msgstr "Guardar" #. Default: "${I}:${M} ${p}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "time_format" -msgstr "" +msgstr "formato_tiempo" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:18 msgid "years" -msgstr "" +msgstr "años" diff --git a/bika/health/locales/pl/LC_MESSAGES/senaite.core.po b/bika/health/locales/pl/LC_MESSAGES/senaite.core.po index 6d7d844e..cf3d17ab 100644 --- a/bika/health/locales/pl/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/pl/LC_MESSAGES/senaite.core.po @@ -1,10 +1,12 @@ +# Translators: +# Piotr Turek , 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: Piotr Turek , 2020\n" "Language-Team: Polish (https://www.transifex.com/senaite/teams/87046/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,25 +20,25 @@ msgstr "" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "Lista podtypów czynników etiologicznych" #: bika/health/content/patient.py:393 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "Lista szczepień pacjenta" #: bika/health/content/patient.py:257 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "Lista terapii i przepisanych pacjentowi leków" #: bika/health/content/patient.py:456 msgid "A list of places visited by the patient." -msgstr "" +msgstr "Lista placówek, w których przebywał pacjent" #: bika/health/browser/doctors/folder_view.py:69 #: bika/health/browser/patients/folder_view.py:107 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "Aktywne" #: bika/health/content/immunization.py:131 msgid "Active immunization" @@ -44,42 +46,42 @@ msgstr "" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "Leczenie czynne" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "Dodaj" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "Dodatkowe identyfikatory" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "Tu mogą być wpisane dodatkowe objawy, nie objęte klasyfikacją ICD, " #: bika/health/content/patient.py:190 msgid "Additional identifiers" -msgstr "" +msgstr "Identyfikatory dodatkowe" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "Uwagi dodatkowe" #: bika/health/controlpanel/bika_aetiologicagents.py:44 msgid "Aetiologic Agents" -msgstr "" +msgstr "Czynniki Etiologiczne" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Czynnik Etiologiczny" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 msgid "Age" -msgstr "" +msgstr "Wiek" #: bika/health/content/bikasetup.py:41 msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" @@ -94,31 +96,31 @@ msgstr "" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Zezwól na dystrybucję wyników wśród pacjentów" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Zezwól na dystrybucję wyników do tego pacjenta" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "Anonimowy" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Dotyczy" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "Odpowiednie dawki i dawkowanie" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "Azjatycki" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Skojarz lekarza z klientem. Ten lekarz nie będzie dostępny dla innych klientów." #. Default: "Case" msgid "Batch" @@ -134,23 +136,23 @@ msgstr "" #: bika/health/content/patient.py:136 msgid "Birth date" -msgstr "" +msgstr "Data urodzenia" #: bika/health/content/patient.py:144 msgid "Birth date is estimated" -msgstr "" +msgstr "Przybliżona data urodzenia" #: bika/health/content/patient.py:536 msgid "Birth place" -msgstr "" +msgstr "Miejsce urodzenia" #: bika/health/browser/patients/folder_view.py:87 msgid "BirthDate" -msgstr "" +msgstr "Data urodzenia" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "Czarnoskóry" #: bika/health/config.py:45 msgid "Both" @@ -159,7 +161,7 @@ msgstr "" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "Telefon służbowy" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 @@ -168,12 +170,12 @@ msgstr "" #: bika/health/content/analysisrequest.py:178 msgid "Case" -msgstr "" +msgstr "Przypadek" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 msgid "Case ID" -msgstr "" +msgstr "ID Przypadku" #: bika/health/controlpanel/bika_caseoutcomes.py:44 msgid "Case Outcomes" @@ -201,33 +203,33 @@ msgstr "" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "Kategoria" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "Leczenie przyczynowe" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "Zmiany zachowane." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Sprawdź, czy u pacjenta występują różne poziomy stresu (brak, łagodny, umiarkowany, silny) dla objawu" #: bika/health/content/patient.py:569 msgid "Citizenship" -msgstr "" +msgstr "Obywatelstwo" #: bika/health/content/patient.py:590 msgid "Civil status" -msgstr "" +msgstr "Stan cywilny" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 #: bika/health/content/patient.py:71 msgid "Client" -msgstr "" +msgstr "Klient" #: bika/health/content/batch.py:366 msgid "Client Case ID" @@ -235,59 +237,59 @@ msgstr "" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "Identyfikator ID jednostki zlecającej badanie " #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "Identyfikator PID jednostki zlecającej badanie" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 msgid "Client Patient ID" -msgstr "" +msgstr "Identyfikator ID Pacjenta jednostki zlecającej badanie" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "Identyfikator ID Pacjenta Jednostki zlecającej badanie musi być wyjątkowy" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "Jednostki zlecające badania" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "Kod" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "Grupy ryzyka" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Nazwa firmy" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "Zgoda na SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "Leczenie zachowawcze" #: bika/health/content/patient.py:441 msgid "Country" -msgstr "" +msgstr "Kraj" #: bika/health/content/patient.py:165 msgid "Country and state" -msgstr "" +msgstr "Kraj i województwo" #: bika/health/content/patient.py:378 msgid "Date" -msgstr "" +msgstr "Data" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" @@ -296,45 +298,45 @@ msgstr "" #: bika/health/content/bikasetup.py:94 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "Domyślne ustawienia publikacji dla Pacjentów" #: bika/health/content/batch.py:171 #: bika/health/content/patient.py:203 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "Opis" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "Choroba" #: bika/health/controlpanel/bika_diseases.py:49 msgid "Diseases" -msgstr "" +msgstr "Choroby" #: bika/health/content/patient.py:83 msgid "District" -msgstr "" +msgstr "Powiat" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "Lekarz" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "Identyfikator ID lekarza" #: bika/health/content/bikasetup.py:132 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "Pole lekarza jest obowiązkowe w przypadkach" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "Lekarze" #: bika/health/browser/patient/files.py:67 msgid "Document ID" @@ -354,7 +356,7 @@ msgstr "" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "Nie Znane" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 @@ -365,43 +367,43 @@ msgstr "" #: bika/health/content/patient.py:242 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "Lek" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "Zakaz stosowania leku" #: bika/health/content/patient.py:309 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "Uzasadnienie zakazu stosowania leku" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "Uzasadnienia zakazu stosowania leku" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "Wskazania do zastosowania leku" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "Dawkowanie leku" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "Przechowywanie leku" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "Działania niepożądane leku" #: bika/health/controlpanel/bika_drugs.py:49 msgid "Drugs" -msgstr "" +msgstr "Leki" #: bika/health/content/patient.py:375 msgid "EPI Number" @@ -411,16 +413,16 @@ msgstr "" #: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "E-mail" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "Adres E-mail" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" +msgstr "Leczenie empiryczne" #: bika/health/content/bikasetup.py:121 msgid "Enable Bika's analysis request form." @@ -432,15 +434,15 @@ msgstr "" #: bika/health/content/patient.py:244 msgid "End" -msgstr "" +msgstr "Koniec" #: bika/health/controlpanel/bika_ethnicities.py:44 msgid "Ethnicities" -msgstr "" +msgstr "Pochodzenie etniczne" #: bika/health/content/patient.py:547 msgid "Ethnicity" -msgstr "" +msgstr "Pochodzenie etniczne" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" @@ -448,7 +450,7 @@ msgstr "" #: bika/health/content/patient.py:548 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "Pochodzenie etniczne np. Azjata, Afrykanin itp." #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" @@ -456,45 +458,45 @@ msgstr "" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Failed ajax call: %s" #: bika/health/content/patient.py:583 msgid "Fathers name" -msgstr "" +msgstr "Imię ojca" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 #: bika/health/controlpanel/bika_vaccinationcenters.py:67 msgid "Fax" -msgstr "" +msgstr "Faks" #: bika/health/content/patient.py:605 msgid "Feature" -msgstr "" +msgstr "Cecha" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "Stopy/cale" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "Żeńska" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "plik" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjenta, jeśli ta opcja jest włączona" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji” pacjenta." #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 @@ -511,19 +513,19 @@ msgstr "" #: bika/health/content/patient.py:120 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "Płeć" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "Obszary geograficzne, którym można przypisać wysoki, średni lub niski poziom zakażeń." #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "Rozmieszczenie geograficzne" #: bika/health/content/patient.py:701 msgid "Guarantor ID" -msgstr "" +msgstr "ID Ubezpieczyciela" #: bika/health/content/patient.py:720 msgid "Guarantor's First Name" @@ -551,51 +553,51 @@ msgstr "" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "Hiszpanie lub Latynosi" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "Wyniki historyczne" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "Godziny postu" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "Kod ICD" #: bika/health/content/patient.py:183 msgid "Identifier" -msgstr "" +msgstr "Identyfikator" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "" +msgstr "Typ dokumentu tożsamości" #: bika/health/controlpanel/bika_identifiertypes.py:45 msgid "Identifier Types" -msgstr "" +msgstr "Rodzaje dowodu tożsamości" #: bika/health/content/patient.py:647 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta." #: bika/health/content/bikasetup.py:84 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta. To ustawienie można zastąpić na karcie „Preferencje publikacji” pacjenta." #: bika/health/content/patient.py:637 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "Jeśli zaznaczone, ustawienia zostaną odziedziczone od klienta, więc dalsze zmiany w kliencie dla tego ustawienia również zostaną wypełnione." #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" +msgstr "Jeśli ta opcja jest zaznaczona, ustawienia dystrybucji raportów wyników wśród pacjentów zostaną odziedziczone z Senaite Setup, więc dalsze zmiany w Senaite Setup dla tego ustawienia również zostaną wypełnione." #: bika/health/content/bikasetup.py:50 msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" @@ -603,25 +605,25 @@ msgstr "" #: bika/health/content/patient.py:684 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "Jeśli zaznaczone, faktury zostaną wysłane do firmy ubezpieczeniowej. W takim przypadku numer ubezpieczenia będzie obowiązkowy." #: bika/health/content/bikasetup.py:143 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "Jeśli ta opcja zostanie wybrana, identyfikatory pacjenta będą musiały być unikalne" #: bika/health/content/patient.py:376 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "Szczepienie" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "Formularz szczepienia" #: bika/health/controlpanel/bika_immunizations.py:49 msgid "Immunizations" -msgstr "" +msgstr "Szczepienia" #: bika/health/browser/patients/folder_view.py:113 msgid "Inactive" @@ -629,15 +631,15 @@ msgstr "" #: bika/health/content/bikasetup.py:73 msgid "Inches" -msgstr "" +msgstr "Cale" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "Niepoprawny format daty w '${title}', powinien być w postaci RRRR-MM-DD" #: bika/health/content/patient.py:636 msgid "Inherit default settings" -msgstr "" +msgstr "Dziedzicz ustawienia domyślne" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" @@ -645,15 +647,15 @@ msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:43 msgid "Insurance Companies" -msgstr "" +msgstr "Firmy ubezpieczeniowe" #: bika/health/content/patient.py:668 msgid "Insurance Company" -msgstr "" +msgstr "Firma ubezpieczeniowa" #: bika/health/content/patient.py:676 msgid "Insurance Number" -msgstr "" +msgstr "Numer ubezpieczenia" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" @@ -665,7 +667,7 @@ msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "Faktury" #: bika/health/config.py:50 msgid "Irregular" @@ -677,19 +679,19 @@ msgstr "" #: bika/health/content/patient.py:320 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "Znane reakcje uczuleniowe Pacjenta pomocne w interpretacji reakcji na leki" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "Znane niepożądane oddziaływanie leku" #: bika/health/content/bikasetup.py:65 msgid "Lbs" -msgstr "" +msgstr "Funty" #: bika/health/content/patient.py:442 msgid "Location" -msgstr "" +msgstr "Lokalizacja" #: bika/health/config.py:28 msgid "Male" @@ -707,7 +709,7 @@ msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "Telefon Komórkowy" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" @@ -723,15 +725,15 @@ msgstr "" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "Rdzenny Amerykanin" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "Hawajczyk lub mieszkaniec Wysp Pacyfiku" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "Brak cyklu miesiączkowego" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" @@ -739,7 +741,7 @@ msgstr "" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "Badanie fizykalne" #: bika/health/content/batch.py:172 msgid "Onset" @@ -748,42 +750,42 @@ msgstr "" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "Data wystąpienia" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "Szacowana data wystąpienia" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "PID" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "Leczenie paliatywne" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "Brakuje parametru '%s'" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "Immunizacja bierna" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "Pacjent" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "Wiek pacjenta w czasie wystąpienia objawów" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" @@ -793,11 +795,11 @@ msgstr "" #: bika/health/browser/batchfolder.py:109 #: bika/health/browser/patients/folder_view.py:67 msgid "Patient ID" -msgstr "" +msgstr "Identyfikator ID pacjenta" #: bika/health/content/patient.py:191 msgid "Patient additional identifiers" -msgstr "" +msgstr "Dodatkowe identyfikatory pacjenta" #: bika/health/content/bikasetup.py:59 msgid "Patient condition height units" @@ -813,32 +815,32 @@ msgstr "" #: bika/health/content/patient.py:505 msgid "Patient's past medical history." -msgstr "" +msgstr "Historia medyczna pacjenta" #: bika/health/browser/patients/folder_view.py:46 msgid "Patients" -msgstr "" +msgstr "Pacjenci" #: bika/health/controlpanel/bika_insurancecompanies.py:56 #: bika/health/controlpanel/bika_vaccinationcenters.py:65 msgid "Phone" -msgstr "" +msgstr "Telefon" #: bika/health/content/patient.py:597 msgid "Photo" -msgstr "" +msgstr "Zdjęcie" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "Proszę poprawić wykryte błędy" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "Zapobieganie" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "Leczenie profilaktyczno zapobiegawcze" #: bika/health/browser/doctors/folder_view.py:54 #: bika/health/browser/patients/folder_view.py:92 @@ -863,13 +865,13 @@ msgstr "" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "Istotne fakty" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 #: bika/health/content/patient.py:224 msgid "Remarks" -msgstr "" +msgstr "Uwagi" #: bika/health/browser/analysis/resultoutofrange.py:114 msgid "Result exceeded panic level" @@ -887,11 +889,11 @@ msgstr "" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "Wybierz typ uodpornienia.
Uodpornienie aktywne zakłada wprowadzenia do organizmu obcych molekuł, co mobilizuje organizm do wytworzenia odporności przeciwko nim. Szczepienie jest formą aktywnego uodpornienia
Bierne uodpornienie następuje gdy wcześniej wytworzone elementy układu odpornościowego zostają przeniesione do organizmu, który nie musi ich generować samodzielnie. Do biernego uodporniania mogą zostać użyte przeciwciała." #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "Wybierz sposób leczenia" #: bika/health/content/bikasetup.py:95 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." @@ -903,27 +905,27 @@ msgstr "" #: bika/health/content/patient.py:683 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "Wyślij faktury do firmy ubezpieczeniowej." #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "Nie znaleziono usługi '%s' dla %s" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "Usługa nie została zdefiniowana" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "Poziomy ważności są dozwolone" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "Terapia szokowa" #: bika/health/content/bikasetup.py:133 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" +msgstr "Czy pole Lekarz powinno być obowiązkowe podczas tworzenia sprawy?" #: bika/health/content/bikasetup.py:49 msgid "Show client email pop-up when panic level" @@ -931,11 +933,11 @@ msgstr "" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "Leczenie specyficzne" #: bika/health/content/patient.py:243 msgid "Start" -msgstr "" +msgstr "Start" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" @@ -948,20 +950,20 @@ msgstr "" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "Podtyp" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "Terapia wspomagająca" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "Objaw" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "Objawy" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" @@ -983,7 +985,7 @@ msgstr "" #: bika/health/content/patient.py:79 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "Tytuł" #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" @@ -996,7 +998,7 @@ msgstr "" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "Leczenie" #: bika/health/content/treatment.py:85 msgid "Treatment Document" @@ -1014,7 +1016,7 @@ msgstr "" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "Rodzaj leczenia" #: bika/health/controlpanel/bika_treatments.py:49 msgid "Treatments" @@ -1040,15 +1042,15 @@ msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "VAT" #: bika/health/content/patient.py:377 msgid "Vaccination Center" -msgstr "" +msgstr "Ośrodek szczepień" #: bika/health/controlpanel/bika_vaccinationcenters.py:52 msgid "Vaccination Centers" -msgstr "" +msgstr "Ośrodki szczepień" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" @@ -1064,16 +1066,16 @@ msgstr "" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "Biały" #: bika/health/browser/analysis/resultoutofrange.py:106 msgid "maxpanic" -msgstr "" +msgstr "maxpanic" #: bika/health/browser/analysis/resultoutofrange.py:105 msgid "minpanic" -msgstr "" +msgstr "minpanic" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "utrwalenie" diff --git a/bika/health/locales/pl/LC_MESSAGES/senaite.health.po b/bika/health/locales/pl/LC_MESSAGES/senaite.health.po index 1312e706..431a928d 100644 --- a/bika/health/locales/pl/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/pl/LC_MESSAGES/senaite.health.po @@ -1,12 +1,13 @@ # Translators: # Jordi Puiggené , 2018 +# Piotr Turek , 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: Jordi Puiggené , 2018\n" +"Last-Translator: Piotr Turek , 2020\n" "Language-Team: Polish (https://www.transifex.com/senaite/teams/87046/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:29 msgid "-" -msgstr "" +msgstr "-" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." @@ -69,7 +70,7 @@ msgstr "Dodaj" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "Dodatkowe identyfikatory" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." @@ -85,7 +86,7 @@ msgstr "Uwagi dodoatkowe" #: bika/health/impress/reports/Default.pt:306 msgid "Address" -msgstr "" +msgstr "Adres" #: bika/health/controlpanel/bika_aetiologicagents.py:44 #: bika/health/profiles/default/controlpanel.xml @@ -94,7 +95,7 @@ msgstr "Czynniki Etiologiczne" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Czynnik Etiologiczny" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 @@ -114,11 +115,11 @@ msgstr "Wszystko" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Zezwól na dystrybucję wyników wśród pacjentów" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Zezwól na dystrybucję wyników do tego pacjenta" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:83 msgid "Analysis Profiles" @@ -134,11 +135,11 @@ msgstr "" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "Anonimowy" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Dotyczy" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" @@ -150,7 +151,7 @@ msgstr "Azjatycki" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Skojarz lekarza z klientem. Ten lekarz nie będzie dostępny dla innych klientów." #: bika/health/impress/reports/Default.pt:607 msgid "Attachment for" @@ -266,7 +267,7 @@ msgstr "Zmiany zachowane." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Sprawdź, czy u pacjenta występują różne poziomy stresu (brak, łagodny, umiarkowany, silny) dla objawu" #: bika/health/content/patient.py:569 msgid "Citizenship" @@ -299,17 +300,17 @@ msgstr "" #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "Identyfikator PID jednostki zlecającej badanie" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" -msgstr "" +msgstr "Identyfikator ID Pacjenta jednostki zlecającej badanie" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "Identyfikator ID Pacjenta Jednostki zlecającej badanie musi być wyjątkowy" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:56 msgid "Client Reference" @@ -326,7 +327,7 @@ msgstr "Jednostki zlecające badania" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "Kod" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" @@ -334,11 +335,11 @@ msgstr "Grupy ryzyka" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Nazwa firmy" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "Zgoda na SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" @@ -380,23 +381,23 @@ msgstr "" #: bika/health/impress/reports/Default.pt:292 msgid "Date of Birth" -msgstr "" +msgstr "Data urodzenia" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:20 msgid "Day 1" -msgstr "" +msgstr "Dzień 1" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:31 msgid "Day 2" -msgstr "" +msgstr "Dzień 2" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:42 msgid "Day 3" -msgstr "" +msgstr "Dzień 3" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:59 msgid "Days" -msgstr "" +msgstr "Dni" #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml @@ -561,7 +562,7 @@ msgstr "Koniec" #: bika/health/controlpanel/bika_ethnicities.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Ethnicities" -msgstr "" +msgstr "Pochodzenie etniczne" #: bika/health/content/patient.py:547 msgid "Ethnicity" @@ -581,7 +582,7 @@ msgstr "" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Nieudane wywołanie ajax: %s" #: bika/health/content/patient.py:583 msgid "Fathers name" @@ -599,7 +600,7 @@ msgstr "Cecha" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "Stopy/cale" #: bika/health/config.py:29 msgid "Female" @@ -607,19 +608,19 @@ msgstr "Żeńska" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "Plik" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjenta, jeśli ta opcja jest włączona" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji” pacjenta." #: bika/health/impress/reports/Default.pt:614 msgid "Filename:" @@ -684,7 +685,7 @@ msgstr "" #: bika/health/configure.zcml:52 msgid "Health Care extension for SENAITE" -msgstr "" +msgstr "Moduł rozszerzenia opieki zdrowotnej dla SENAITE" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:20 msgid "Height" @@ -696,7 +697,7 @@ msgstr "Hiszpanie lub Latynosi" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "Wyniki historyczne" #: bika/health/content/batch.py:261 msgid "Hours fasting" @@ -717,7 +718,7 @@ msgstr "Identyfikator" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "Typ Identyfikatora" +msgstr "Typ dokumentu tożsamości" #: bika/health/controlpanel/bika_identifiertypes.py:45 #: bika/health/profiles/default/controlpanel.xml diff --git a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po index 7d361a25..4e9e86f0 100644 --- a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po @@ -1,10 +1,12 @@ +# Translators: +# Zhuo Song, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: Zhuo Song, 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/senaite/teams/87046/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,1062 +20,1062 @@ msgstr "" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "病原体亚型列表。" #: bika/health/content/patient.py:393 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "给予患者的免疫接种清单。" #: bika/health/content/patient.py:257 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "患者治疗和药物清单。" #: bika/health/content/patient.py:456 msgid "A list of places visited by the patient." -msgstr "" +msgstr "患者去过的地方的清单。" #: bika/health/browser/doctors/folder_view.py:69 #: bika/health/browser/patients/folder_view.py:107 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "活跃的" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "主动免疫" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "积极治疗" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "添加" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "附加ID" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "可以在此处输入ICD代码未涵盖的其他症状。" #: bika/health/content/patient.py:190 msgid "Additional identifiers" -msgstr "" +msgstr "附加标识符" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "补充说明" #: bika/health/controlpanel/bika_aetiologicagents.py:44 msgid "Aetiologic Agents" -msgstr "" +msgstr "病原体" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "病原体" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 msgid "Age" -msgstr "" +msgstr "年龄" #: bika/health/content/bikasetup.py:41 msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "当提交的分析结果超出紧急程度时,通过电子邮件提醒实验室经理" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 #: bika/health/browser/patients/folder_view.py:119 msgid "All" -msgstr "" +msgstr "所有的" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "允许将结果分发给患者" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "允许将结果分发给该患者" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "匿名" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "适用于" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "适当的剂量和剂量" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "亚洲人" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "将该医生与某位客户联系起来。 其他客户将无法访问该医生。" #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "批次" #. Default: "Case ID" msgid "Batch ID" -msgstr "" +msgstr "批次编码" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "批次" #: bika/health/content/patient.py:136 msgid "Birth date" -msgstr "" +msgstr "生日" #: bika/health/content/patient.py:144 msgid "Birth date is estimated" -msgstr "" +msgstr "估计的生日" #: bika/health/content/patient.py:536 msgid "Birth place" -msgstr "" +msgstr "出生地" #: bika/health/browser/patients/folder_view.py:87 msgid "BirthDate" -msgstr "" +msgstr "生日" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "黑色" #: bika/health/config.py:45 msgid "Both" -msgstr "" +msgstr "二者" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "办公电话" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "身份识别码" #: bika/health/content/analysisrequest.py:178 msgid "Case" -msgstr "" +msgstr "病案" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 msgid "Case ID" -msgstr "" +msgstr "病案编号" #: bika/health/controlpanel/bika_caseoutcomes.py:44 msgid "Case Outcomes" -msgstr "" +msgstr "病案结果" #: bika/health/controlpanel/bika_casestatuses.py:44 msgid "Case Statuses" -msgstr "" +msgstr "病案状态" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "病案综合征分类" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "病案结果" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "病案状态" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "病案" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "类别" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "因果治疗" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "更改已保存。" #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "检查患者是否可以经历不同的压力水平(无,轻度,中度,重度)症状" #: bika/health/content/patient.py:569 msgid "Citizenship" -msgstr "" +msgstr "国籍" #: bika/health/content/patient.py:590 msgid "Civil status" -msgstr "" +msgstr "公民身份" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 #: bika/health/content/patient.py:71 msgid "Client" -msgstr "" +msgstr "客户" #: bika/health/content/batch.py:366 msgid "Client Case ID" -msgstr "" +msgstr "客户病案编号" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "客户编号" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "客户PID" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 msgid "Client Patient ID" -msgstr "" +msgstr "客户病人ID" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "客户患者ID必须唯一" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "客户" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "编码" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "集体处于危险之中" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "公司名" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "同意短信" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "保守治疗" #: bika/health/content/patient.py:441 msgid "Country" -msgstr "" +msgstr "国家" #: bika/health/content/patient.py:165 msgid "Country and state" -msgstr "" +msgstr "国家和省市" #: bika/health/content/patient.py:378 msgid "Date" -msgstr "" +msgstr "日期" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "默认" #: bika/health/content/bikasetup.py:94 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "患者的默认发布偏好" #: bika/health/content/batch.py:171 #: bika/health/content/patient.py:203 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "描述" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "疾病" #: bika/health/controlpanel/bika_diseases.py:49 msgid "Diseases" -msgstr "" +msgstr "疾病" #: bika/health/content/patient.py:83 msgid "District" -msgstr "" +msgstr "区" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "医生" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "医生编号" #: bika/health/content/bikasetup.py:132 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "在某些情况下必须填写医生字段" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "医生" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "文件编号" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "文件位置" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "文件类型" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "文件版本" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "不知道" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "" +msgstr "休眠的" #: bika/health/content/patient.py:242 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "药物" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "用药禁忌" #: bika/health/content/patient.py:309 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "用药禁忌说明" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "用药禁忌说明" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "药物适应症" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "药物学" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "药物保存" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "药物副作用" #: bika/health/controlpanel/bika_drugs.py:49 msgid "Drugs" -msgstr "" +msgstr "药物" #: bika/health/content/patient.py:375 msgid "EPI Number" -msgstr "" +msgstr "EPI编号" #: bika/health/controlpanel/bika_insurancecompanies.py:54 #: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "Email" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "Email地址" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" +msgstr "实证治疗" #: bika/health/content/bikasetup.py:121 msgid "Enable Bika's analysis request form." -msgstr "" +msgstr "启用Bika的分析请求表。" #: bika/health/content/bikasetup.py:40 msgid "Enable panic levels alert" -msgstr "" +msgstr "启用紧急级别警报" #: bika/health/content/patient.py:244 msgid "End" -msgstr "" +msgstr "结束" #: bika/health/controlpanel/bika_ethnicities.py:44 msgid "Ethnicities" -msgstr "" +msgstr "种族" #: bika/health/content/patient.py:547 msgid "Ethnicity" -msgstr "" +msgstr "种族" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "种族名称" #: bika/health/content/patient.py:548 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "种族,例如:亚洲,非洲等" #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "预期/对症治疗" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Ajax调用失败:%s" #: bika/health/content/patient.py:583 msgid "Fathers name" -msgstr "" +msgstr "父亲的名字" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 #: bika/health/controlpanel/bika_vaccinationcenters.py:67 msgid "Fax" -msgstr "" +msgstr "传真" #: bika/health/content/patient.py:605 msgid "Feature" -msgstr "" +msgstr "特征" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "英尺/英寸" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "女性" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "文件" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "归档结果的附件,例如,显微镜照片,如果启用此选项,将包含在给患者的电子邮件中" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在患者的“发布偏好”标签上覆盖此设置。" #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "全名" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "全名" #: bika/health/browser/patients/folder_view.py:77 #: bika/health/content/patient.py:120 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "性别" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "地理区域的特征是具有高,中或低水平的感染。" #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "地域分布" #: bika/health/content/patient.py:701 msgid "Guarantor ID" -msgstr "" +msgstr "担保人编码" #: bika/health/content/patient.py:720 msgid "Guarantor's First Name" -msgstr "" +msgstr "担保人的名" #: bika/health/content/patient.py:736 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "担保人电话(办公)" #: bika/health/content/patient.py:743 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "担保人电话(家庭电话)" #: bika/health/content/patient.py:750 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "担保人电话(移动电话)" #: bika/health/content/patient.py:711 msgid "Guarantor's Surname" -msgstr "" +msgstr "担保人的姓" #: bika/health/content/patient.py:729 msgid "Guarantor's postal address" -msgstr "" +msgstr "担保人的邮政地址" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "西班牙裔或拉丁裔" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "历史结果" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "空腹小时" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "iCD代码" #: bika/health/content/patient.py:183 msgid "Identifier" -msgstr "" +msgstr "识别码" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "" +msgstr "标识符类型" #: bika/health/controlpanel/bika_identifiertypes.py:45 msgid "Identifier Types" -msgstr "" +msgstr "标识符类型" #: bika/health/content/patient.py:647 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。" #: bika/health/content/bikasetup.py:84 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。 可以在患者的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/patient.py:637 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "如果选中,则设置将从客户端继承,因此客户端中也会对此设置进行进一步的更改。" #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" +msgstr "如果选中,则从Bika Setup继承用于向患者分发结果报告的设置,因此也会在Bika Setup中对此设置进行进一步的更改。" #: bika/health/content/bikasetup.py:50 msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "如果启用,将自动显示一个电子邮件表单弹出窗口,用于在加载“分析请求”视图时提醒客户端超出了紧急级别" #: bika/health/content/patient.py:684 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "如果选中,发票将发送到保险公司。 在这种情况下,保险号将是强制性的。" #: bika/health/content/bikasetup.py:143 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "如果选择,则客户患者ID将被强制为唯一" #: bika/health/content/patient.py:376 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "免疫" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "免疫形式" #: bika/health/controlpanel/bika_immunizations.py:49 msgid "Immunizations" -msgstr "" +msgstr "免疫" #: bika/health/browser/patients/folder_view.py:113 msgid "Inactive" -msgstr "" +msgstr "不活跃" #: bika/health/content/bikasetup.py:73 msgid "Inches" -msgstr "" +msgstr "英寸" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "'${title}'中的数据格式不正确,应为YYYY-MM-DD" #: bika/health/content/patient.py:636 msgid "Inherit default settings" -msgstr "" +msgstr "继承默认设置" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "继承患者结果分发的默认设置" #: bika/health/controlpanel/bika_insurancecompanies.py:43 msgid "Insurance Companies" -msgstr "" +msgstr "保险公司" #: bika/health/content/patient.py:668 msgid "Insurance Company" -msgstr "" +msgstr "保险公司" #: bika/health/content/patient.py:676 msgid "Insurance Number" -msgstr "" +msgstr "保险号码" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "发票日期" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "发票号码" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "发票" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" +msgstr "不规则" #: bika/health/content/bikasetup.py:122 msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" +msgstr "它启用了辅助分析请求表。 该请求具有一些特征,如允许您同时注册多个分析请求。 如果您应该同时注册大量分析请求,这将很有用。" #: bika/health/content/patient.py:320 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "药物的已知不良作用" #: bika/health/content/bikasetup.py:65 msgid "Lbs" -msgstr "" +msgstr "磅" #: bika/health/content/patient.py:442 msgid "Location" -msgstr "" +msgstr "地点" #: bika/health/config.py:28 msgid "Male" -msgstr "" +msgstr "男性" #: bika/health/content/analysisspec.py:50 #: bika/health/widgets/analysisspecificationwidget.py:41 msgid "Max panic" -msgstr "" +msgstr "紧急最大值" #: bika/health/content/analysisspec.py:49 #: bika/health/widgets/analysisspecificationwidget.py:40 msgid "Min panic" -msgstr "" +msgstr "紧急最小值" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "手机" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "移动电话" #: bika/health/content/patient.py:576 msgid "Mothers name" -msgstr "" +msgstr "母亲的名字" #: bika/health/controlpanel/bika_vaccinationcenters.py:61 msgid "Name" -msgstr "" +msgstr "名称" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "美洲原住民" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "夏威夷原住民或其他太平洋岛民" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "没有月经周期" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "未定义请求ID" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "客观临床发现" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "发作" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "发病日期" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "预计发病日期" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "PID" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "姑息治疗" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "参数'%s' 丢失" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "被动免疫" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "患者" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "发病日期的患者年龄" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "患者档案" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 #: bika/health/browser/patients/folder_view.py:67 msgid "Patient ID" -msgstr "" +msgstr "患者编号" #: bika/health/content/patient.py:191 msgid "Patient additional identifiers" -msgstr "" +msgstr "患者附加标识符" #: bika/health/content/bikasetup.py:59 msgid "Patient condition height units" -msgstr "" +msgstr "患者身高" #: bika/health/content/bikasetup.py:75 msgid "Patient condition waist units" -msgstr "" +msgstr "患者腰围" #: bika/health/content/bikasetup.py:67 msgid "Patient condition weight units" -msgstr "" +msgstr "患者体重" #: bika/health/content/patient.py:505 msgid "Patient's past medical history." -msgstr "" +msgstr "患者过去的病史。" #: bika/health/browser/patients/folder_view.py:46 msgid "Patients" -msgstr "" +msgstr "患者" #: bika/health/controlpanel/bika_insurancecompanies.py:56 #: bika/health/controlpanel/bika_vaccinationcenters.py:65 msgid "Phone" -msgstr "" +msgstr "电话" #: bika/health/content/patient.py:597 msgid "Photo" -msgstr "" +msgstr "照片" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "请更正指示的错误。" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "预防" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "预防/预防治疗" #: bika/health/browser/doctors/folder_view.py:54 #: bika/health/browser/patients/folder_view.py:92 msgid "Primary Referrer" -msgstr "" +msgstr "主要推荐人" #: bika/health/content/patient.py:81 msgid "Province" -msgstr "" +msgstr "省" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "临时诊断" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "合理治疗" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "定期" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "相关事实" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 #: bika/health/content/patient.py:224 msgid "Remarks" -msgstr "" +msgstr "注释" #: bika/health/browser/analysis/resultoutofrange.py:114 msgid "Result exceeded panic level" -msgstr "" +msgstr "超出紧急程度的结果" #: bika/health/browser/analysis/resultoutofrange.py:111 msgid "Result in shoulder panic range" -msgstr "" +msgstr "导致紧急范围" #: bika/health/content/bikasetup.py:107 #: bika/health/content/client.py:71 #: bika/health/content/patient.py:655 msgid "Results attachments permitted" -msgstr "" +msgstr "允许结果附件" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "选择一种免疫。 主动免疫需要将异物引入人体,这会导致人体自身产生针对靶标的免疫力。 疫苗接种是一种主动的免疫接种方式。被动免疫是指将免疫系统中预先合成的元素转移给人,这样人体就不需要自己产生这些元素了。 目前,抗体可用于被动免疫" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "选择一种治疗方式。" #: bika/health/content/bikasetup.py:95 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在患者的“发布偏好”标签上覆盖此设置。" #: bika/health/content/patient.py:683 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "将发票发送给保险公司。" #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "%s找不到服务'%s'" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "服务未定义" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "允许的严重级别" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "休克治疗" #: bika/health/content/bikasetup.py:133 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" +msgstr "创建病案时,Doctor字段是否为必填字段?" #: bika/health/content/bikasetup.py:49 msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "出现紧急情况时显示客户端电子邮件弹出窗口" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "具体待遇" #: bika/health/content/patient.py:243 msgid "Start" -msgstr "" +msgstr "开始" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "主观临床发现" #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "小计" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "亚型" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "配套治疗" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "症状" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "病征" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "药物适合的症状等" #: bika/health/content/patient.py:702 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "合同涵盖当前患者的人员的ID号(保险号)。" #: bika/health/content/patient.py:693 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "病人和担保人是相同的。" #: bika/health/content/patient.py:692 msgid "The patient is the guarantor." -msgstr "" +msgstr "病人是保证人。" #: bika/health/content/batch.py:138 #: bika/health/content/patient.py:79 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "标题" #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "总" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "传输" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "治疗方法" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "治疗文档" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "治疗护理" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "治疗程序" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "处理方式" #: bika/health/controlpanel/bika_treatments.py:49 msgid "Treatments" -msgstr "" +msgstr "治疗方法" #. Default: "End date" #: bika/health/content/patient.py:440 msgid "Trip End Date" -msgstr "" +msgstr "行程结束日期" #. Default: "Start date" #: bika/health/content/patient.py:439 msgid "Trip Start Date" -msgstr "" +msgstr "行程开始日期" #: bika/health/content/bikasetup.py:60 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "使用“ /”符号允许多单位提交" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "用户名" #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "加值税" #: bika/health/content/patient.py:377 msgid "Vaccination Center" -msgstr "" +msgstr "疫苗接种中心" #: bika/health/controlpanel/bika_vaccinationcenters.py:52 msgid "Vaccination Centers" -msgstr "" +msgstr "疫苗接种中心" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" +msgstr "验证失败:'${value}' 不是唯一的" #: bika/health/widgets/analysisspecificationwidget.py:124 msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" +msgstr "验证失败:紧急最大值必须大于紧急最小值" #: bika/health/widgets/analysisspecificationwidget.py:114 msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "验证失败:紧急最小值必须为数字" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "白色" #: bika/health/browser/analysis/resultoutofrange.py:106 msgid "maxpanic" -msgstr "" +msgstr "紧急最大值" #: bika/health/browser/analysis/resultoutofrange.py:105 msgid "minpanic" -msgstr "" +msgstr "紧急最小值" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "保存" diff --git a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po index c650fa1c..41bf6027 100644 --- a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po @@ -1,12 +1,13 @@ # Translators: # Jordi Puiggené , 2018 +# Zhuo Song, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-07 17:10+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: Jordi Puiggené , 2018\n" +"Last-Translator: Zhuo Song, 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/senaite/teams/87046/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,32 +21,32 @@ msgstr "" #: bika/health/impress/reports/Default.pt:295 msgid "(estimated)" -msgstr "" +msgstr "(估计)" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:29 msgid "-" -msgstr "" +msgstr "-" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "病原体亚型列表。" #: bika/health/content/patient.py:393 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "给予患者的免疫接种清单。" #: bika/health/content/patient.py:257 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "患者治疗和药物清单。" #: bika/health/content/patient.py:456 msgid "A list of places visited by the patient." -msgstr "" +msgstr "患者去过的地方的清单。" #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Activate" -msgstr "" +msgstr "启用" #: bika/health/browser/doctors/folder_view.py:69 #: bika/health/browser/patients/folder_view.py:107 @@ -55,11 +56,11 @@ msgstr "活跃的" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "主动免疫" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "积极治疗" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 @@ -69,41 +70,41 @@ msgstr "添加" #: bika/health/browser/patients/folder_view.py:98 msgid "Additional IDs" -msgstr "" +msgstr "附加ID" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "可以在此处输入ICD代码未涵盖的其他症状。" #: bika/health/content/patient.py:190 msgid "Additional identifiers" -msgstr "" +msgstr "附加标识符" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "补充说明" #: bika/health/impress/reports/Default.pt:306 msgid "Address" -msgstr "" +msgstr "地址" #: bika/health/controlpanel/bika_aetiologicagents.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Aetiologic Agents" -msgstr "" +msgstr "病原体" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "病原体" #: bika/health/browser/patients/folder_view.py:82 #: bika/health/content/patient.py:126 msgid "Age" -msgstr "" +msgstr "年龄" #: bika/health/content/bikasetup.py:41 msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "当提交的分析结果超出紧急程度时,通过电子邮件提醒实验室经理" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 @@ -114,97 +115,97 @@ msgstr "所有的" #: bika/health/content/bikasetup.py:83 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "允许将结果分发给患者" #: bika/health/content/patient.py:646 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "允许将结果分发给该患者" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:83 msgid "Analysis Profiles" -msgstr "" +msgstr "分析资料" #: bika/health/impress/reports/Default.pt:126 msgid "Analysis Report" -msgstr "" +msgstr "分析报告" #: bika/health/impress/reports/Default.pt:702 msgid "Analysis results relate only to the samples tested." -msgstr "" +msgstr "仅与测试样品有关的分析结果。" #: bika/health/content/patient.py:628 msgid "Anonymous" -msgstr "" +msgstr "匿名" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "适用于" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "适当的剂量和剂量" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "亚洲人" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "将该医生与某位客户联系起来。 其他客户将无法访问该医生。" #: bika/health/impress/reports/Default.pt:607 msgid "Attachment for" -msgstr "" +msgstr "附件" #: bika/health/impress/reports/Default.pt:591 msgid "Attachments for ${DYNAMIC_CONTENT}" -msgstr "" +msgstr "$ {DYNAMIC_CONTENT}的附件" #: bika/health/impress/reports/Default.pt:26 msgid "Attachments per Row" -msgstr "" +msgstr "每行附件" #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "批次" #: bika/health/browser/batch/publish.pt:52 msgid "Batch ID" -msgstr "" +msgstr "批次编码" #: bika/health/impress/reports/Default.pt:436 msgid "Batch Labels" -msgstr "" +msgstr "批次标签" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "批次" #: bika/health/content/patient.py:136 msgid "Birth date" -msgstr "" +msgstr "生日" #: bika/health/content/patient.py:144 msgid "Birth date is estimated" -msgstr "" +msgstr "估计的生日" #: bika/health/content/patient.py:536 msgid "Birth place" -msgstr "" +msgstr "出生地" #: bika/health/browser/patients/folder_view.py:87 msgid "BirthDate" -msgstr "" +msgstr "生日" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "黑色" #: bika/health/config.py:45 #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:219 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:73 msgid "Both" -msgstr "" +msgstr "二者" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 @@ -214,43 +215,43 @@ msgstr "办公电话" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "身份识别码" #: bika/health/content/analysisrequest.py:178 msgid "Case" -msgstr "" +msgstr "病案" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 #: bika/health/impress/reports/Default.pt:385 msgid "Case ID" -msgstr "" +msgstr "病案编号" #: bika/health/controlpanel/bika_caseoutcomes.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Outcomes" -msgstr "" +msgstr "病案结果" #: bika/health/controlpanel/bika_casestatuses.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Statuses" -msgstr "" +msgstr "病案状态" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "病案综合征分类" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "病案结果" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "病案状态" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "病案" #: bika/health/content/drug.py:38 msgid "Category" @@ -258,91 +259,91 @@ msgstr "类别" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "因果治疗" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "更改已保存。" #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "检查患者是否可以经历不同的压力水平(无,轻度,中度,重度)症状" #: bika/health/content/patient.py:569 msgid "Citizenship" -msgstr "" +msgstr "国籍" #: bika/health/content/patient.py:590 msgid "Civil status" -msgstr "" +msgstr "公民身份" #: bika/health/browser/batch/publish.pt:60 #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 msgid "Client" -msgstr "" +msgstr "客户" #: bika/health/content/batch.py:366 #: bika/health/impress/reports/Default.pt:362 msgid "Client Case ID" -msgstr "" +msgstr "客户病案编号" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "客户编号" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:105 msgid "Client Order Number" -msgstr "" +msgstr "客户订单号" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 #: bika/health/browser/patients/folder_view.py:72 msgid "Client PID" -msgstr "" +msgstr "客户PID" #: bika/health/content/analysisrequest.py:122 #: bika/health/content/patient.py:621 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" -msgstr "" +msgstr "客户病人ID" #: bika/health/content/bikasetup.py:142 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "客户患者ID必须唯一" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:56 msgid "Client Reference" -msgstr "" +msgstr "客户参考" #: bika/health/impress/reports/Default.pt:370 msgid "Client Sample ID" -msgstr "" +msgstr "客户样品编号" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "客户" #: bika/health/content/batch.py:169 #: bika/health/content/patient.py:463 msgid "Code" -msgstr "" +msgstr "编码" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "集体处于危险之中" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "公司名" #: bika/health/content/patient.py:757 msgid "Consent to SMS" -msgstr "" +msgstr "同意短信" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "保守治疗" #: bika/health/content/patient.py:441 msgid "Country" @@ -350,186 +351,186 @@ msgstr "国家" #: bika/health/content/patient.py:165 msgid "Country and state" -msgstr "" +msgstr "国家和省市" #: bika/health/impress/reports/Default.pt:21 msgid "Custom Report Options" -msgstr "" +msgstr "自定义报告选项" #: bika/health/content/patient.py:378 msgid "Date" -msgstr "" +msgstr "日期" #: bika/health/impress/reports/Default.pt:409 msgid "Date Collected" -msgstr "" +msgstr "收集日期" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:132 #: bika/health/impress/reports/Default.pt:421 msgid "Date Published" -msgstr "" +msgstr "发布日期" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:96 #: bika/health/impress/reports/Default.pt:413 msgid "Date Received" -msgstr "" +msgstr "接收日期" #: bika/health/impress/reports/Default.pt:417 msgid "Date Verified" -msgstr "" +msgstr "验证日期" #: bika/health/impress/reports/Default.pt:292 msgid "Date of Birth" -msgstr "" +msgstr "出生日期" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:20 msgid "Day 1" -msgstr "" +msgstr "第一天" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:31 msgid "Day 2" -msgstr "" +msgstr "第二天" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:42 msgid "Day 3" -msgstr "" +msgstr "第三天" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:59 msgid "Days" -msgstr "" +msgstr "天" #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Deactivate" -msgstr "" +msgstr "停用" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "默认" #: bika/health/content/bikasetup.py:94 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "患者的默认发布偏好" #: bika/health/content/batch.py:171 #: bika/health/content/patient.py:203 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "描述" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:197 msgid "Discount" -msgstr "" +msgstr "折扣" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "疾病" #: bika/health/controlpanel/bika_diseases.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Diseases" -msgstr "" +msgstr "疾病" #: bika/health/content/patient.py:83 msgid "District" -msgstr "" +msgstr "区" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "医生" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "医生编号" #: bika/health/content/bikasetup.py:132 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "在某些情况下必须填写医生字段" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "医生" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "文件编号" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "文件位置" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "文件类型" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "文件版本" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "不知道" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "不活动" +msgstr "休眠的" #: bika/health/content/patient.py:242 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "药物" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "用药禁忌" #: bika/health/content/patient.py:309 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "用药禁忌说明" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "用药禁忌说明" #: bika/health/profiles/default/controlpanel.xml msgid "Drug Prohibitions" -msgstr "" +msgstr "用药禁忌" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "药物适应症" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "药物学" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "药物保存" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "药物副作用" #: bika/health/controlpanel/bika_drugs.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Drugs" -msgstr "" +msgstr "药物" #: bika/health/content/patient.py:375 msgid "EPI Number" -msgstr "" +msgstr "EPI编号" #: bika/health/controlpanel/bika_insurancecompanies.py:54 #: bika/health/controlpanel/bika_vaccinationcenters.py:63 @@ -544,312 +545,312 @@ msgstr "Email地址" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" +msgstr "实证治疗" #: bika/health/content/bikasetup.py:121 msgid "Enable Bika's analysis request form." -msgstr "" +msgstr "启用Bika的分析请求表。" #: bika/health/content/bikasetup.py:40 msgid "Enable panic levels alert" -msgstr "" +msgstr "启用紧急级别警报" #: bika/health/content/patient.py:244 msgid "End" -msgstr "" +msgstr "结束" #: bika/health/controlpanel/bika_ethnicities.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Ethnicities" -msgstr "" +msgstr "种族" #: bika/health/content/patient.py:547 msgid "Ethnicity" -msgstr "" +msgstr "种族" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "种族名称" #: bika/health/content/patient.py:548 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "种族,例如:亚洲,非洲等" #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "预期/对症治疗" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Ajax调用失败:%s" #: bika/health/content/patient.py:583 msgid "Fathers name" -msgstr "" +msgstr "父亲的名字" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 #: bika/health/controlpanel/bika_vaccinationcenters.py:67 msgid "Fax" -msgstr "" +msgstr "传真" #: bika/health/content/patient.py:605 msgid "Feature" -msgstr "" +msgstr "特征" #: bika/health/content/bikasetup.py:57 msgid "Feet/inches" -msgstr "" +msgstr "英尺/英寸" #: bika/health/config.py:29 msgid "Female" -msgstr "女/雌" +msgstr "女性" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "文件" #: bika/health/content/patient.py:656 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "归档结果的附件,例如,显微镜照片,如果启用此选项,将包含在给患者的电子邮件中" #: bika/health/content/bikasetup.py:108 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在患者的“发布偏好”标签上覆盖此设置。" #: bika/health/impress/reports/Default.pt:614 msgid "Filename:" -msgstr "" +msgstr "文件名:" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:21 msgid "First day of last menses" -msgstr "" +msgstr "最后一次月经的第一天" #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "全名" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "全名" #: bika/health/browser/patients/folder_view.py:77 #: bika/health/content/patient.py:120 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "性别" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "地理区域的特征是具有高,中或低水平的感染。" #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "地域分布" #: bika/health/content/patient.py:701 msgid "Guarantor ID" -msgstr "" +msgstr "担保人编码" #: bika/health/content/patient.py:720 msgid "Guarantor's First Name" -msgstr "" +msgstr "担保人的名" #: bika/health/content/patient.py:736 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "担保人电话(办公)" #: bika/health/content/patient.py:743 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "担保人电话(家庭电话)" #: bika/health/content/patient.py:750 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "担保人电话(移动电话)" #: bika/health/content/patient.py:711 msgid "Guarantor's Surname" -msgstr "" +msgstr "担保人的姓" #: bika/health/content/patient.py:729 msgid "Guarantor's postal address" -msgstr "" +msgstr "担保人的邮政地址" #: bika/health/configure.zcml:52 msgid "Health Care extension for SENAITE" -msgstr "" +msgstr "SENAITE的医疗保健扩展" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:20 msgid "Height" -msgstr "" +msgstr "高度" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "西班牙裔或拉丁裔" #: bika/health/browser/patient/historicresults.py:45 msgid "Historic Results" -msgstr "" +msgstr "历史结果" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "空腹小时" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:55 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:32 msgid "Hysterectomy" -msgstr "" +msgstr "子宫切除术" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "iCD代码" #: bika/health/content/patient.py:183 msgid "Identifier" -msgstr "" +msgstr "识别码" #: bika/health/content/patient.py:182 msgid "Identifier Type" -msgstr "" +msgstr "标识符类型" #: bika/health/controlpanel/bika_identifiertypes.py:45 #: bika/health/profiles/default/controlpanel.xml msgid "Identifier Types" -msgstr "" +msgstr "标识符类型" #: bika/health/content/patient.py:647 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。" #: bika/health/content/bikasetup.py:84 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "如果选中,结果报告也将自动发送给患者。 可以在患者的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/patient.py:637 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "如果选中,则设置将从客户端继承,因此客户端中也会对此设置进行进一步的更改。" #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" +msgstr "如果选中,则从Bika Setup继承用于向患者分发结果报告的设置,因此也会在Bika Setup中对此设置进行进一步的更改。" #: bika/health/content/bikasetup.py:50 msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "如果启用,将自动显示一个电子邮件表单弹出窗口,用于在加载“分析请求”视图时提醒客户端超出了紧急级别" #: bika/health/content/patient.py:684 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "如果选中,发票将发送到保险公司。 在这种情况下,保险号将是强制性的。" #: bika/health/content/bikasetup.py:143 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "如果选择,则客户患者ID将被强制为唯一" #: bika/health/content/patient.py:376 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "免疫" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "免疫形式" #: bika/health/controlpanel/bika_immunizations.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Immunizations" -msgstr "" +msgstr "免疫" #: bika/health/browser/patients/folder_view.py:113 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" -msgstr "" +msgstr "不活跃" #: bika/health/content/bikasetup.py:73 msgid "Inches" -msgstr "" +msgstr "英寸" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "'${title}'中的数据格式不正确,应为YYYY-MM-DD" #: bika/health/content/patient.py:636 msgid "Inherit default settings" -msgstr "" +msgstr "继承默认设置" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "继承患者结果分发的默认设置" #: bika/health/controlpanel/bika_insurancecompanies.py:43 #: bika/health/profiles/default/controlpanel.xml msgid "Insurance Companies" -msgstr "" +msgstr "保险公司" #: bika/health/content/patient.py:668 msgid "Insurance Company" -msgstr "" +msgstr "保险公司" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 #: bika/health/content/patient.py:676 msgid "Insurance Number" -msgstr "" +msgstr "保险号码" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:17 msgid "Invoice" -msgstr "" +msgstr "发票" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "发票日期" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:45 msgid "Invoice ID" -msgstr "" +msgstr "发票编号" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "发票号码" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:30 msgid "Invoice To" -msgstr "" +msgstr "开发票" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "发票" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" +msgstr "不规则" #: bika/health/content/bikasetup.py:122 msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" +msgstr "它启用了辅助分析请求表。 该请求具有一些特征,如允许您同时注册多个分析请求。 如果您应该同时注册大量分析请求,这将很有用。" #: bika/health/content/patient.py:320 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "药物的已知不良作用" #: bika/health/content/bikasetup.py:65 msgid "Lbs" -msgstr "" +msgstr "磅" #: bika/health/content/patient.py:442 msgid "Location" @@ -857,29 +858,29 @@ msgstr "地点" #: bika/health/config.py:28 msgid "Male" -msgstr "男/雄" +msgstr "男性" #: bika/health/content/analysisspec.py:50 #: bika/health/widgets/analysisspecificationwidget.py:41 msgid "Max panic" -msgstr "" +msgstr "紧急最大值" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" -msgstr "" +msgstr "月经周期类型" #: bika/health/impress/reports/Default.pt:697 msgid "Methods included in the ${accreditation_body} schedule of Accreditation for this Laboratory. Analysis remarks are not accredited" -msgstr "" +msgstr "$ {accreditation_body}实验室认证时间表中包含的方法。 分析备注未经认可" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:24 msgid "Mild" -msgstr "" +msgstr "温和" #: bika/health/content/analysisspec.py:49 #: bika/health/widgets/analysisspecificationwidget.py:40 msgid "Min panic" -msgstr "" +msgstr "紧急最小值" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" @@ -887,23 +888,23 @@ msgstr "手机" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "移动电话" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:26 msgid "Moderate" -msgstr "" +msgstr "中等" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:46 msgid "Month" -msgstr "" +msgstr "月" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:52 msgid "Months" -msgstr "" +msgstr "月数" #: bika/health/content/patient.py:576 msgid "Mothers name" -msgstr "" +msgstr "母亲的名字" #: bika/health/controlpanel/bika_vaccinationcenters.py:61 msgid "Name" @@ -911,135 +912,135 @@ msgstr "名称" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "美洲原住民" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "夏威夷原住民或其他太平洋岛民" #: bika/health/browser/patient/historicresults.pt:254 msgid "No historic results found" -msgstr "" +msgstr "找不到历史结果" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "没有月经周期" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "未定义请求ID" #: bika/health/impress/reports/Default.pt:684 msgid "Not invoiced" -msgstr "" +msgstr "未开发票" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:70 msgid "Num" -msgstr "" +msgstr "数量" #: bika/health/impress/reports/Default.pt:36 msgid "Number of attachments rendered within one row per Sample" -msgstr "" +msgstr "每个样本一行内呈现的附件数" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "客观临床发现" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:214 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:68 msgid "One" -msgstr "" +msgstr "一个" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "发作" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "发病日期" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "预计发病日期" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:67 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:58 msgid "Ovaries removed" -msgstr "" +msgstr "去除卵巢" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "PID" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "姑息治疗" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "参数'%s' 丢失" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "被动免疫" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "患者" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "发病日期的患者年龄" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "患者档案" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 #: bika/health/browser/patients/folder_view.py:67 msgid "Patient ID" -msgstr "" +msgstr "患者编号" #: bika/health/impress/reports/Default.pt:299 msgid "Patient Identifiers" -msgstr "" +msgstr "患者识别码" #: bika/health/impress/reports/Default.pt:277 msgid "Patient Information" -msgstr "" +msgstr "患者信息" #: bika/health/content/patient.py:191 msgid "Patient additional identifiers" -msgstr "" +msgstr "患者附加标识符" #: bika/health/content/bikasetup.py:59 msgid "Patient condition height units" -msgstr "" +msgstr "患者身高" #: bika/health/content/bikasetup.py:75 msgid "Patient condition waist units" -msgstr "" +msgstr "患者腰围" #: bika/health/content/bikasetup.py:67 msgid "Patient condition weight units" -msgstr "" +msgstr "患者体重" #: bika/health/content/patient.py:505 msgid "Patient's past medical history." -msgstr "" +msgstr "患者过去的病史。" #: bika/health/browser/patients/folder_view.py:46 msgid "Patients" -msgstr "" +msgstr "患者" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 @@ -1049,85 +1050,85 @@ msgstr "电话" #: bika/health/impress/reports/Default.pt:319 msgid "Phone (home)" -msgstr "" +msgstr "电话(家庭)" #: bika/health/impress/reports/Default.pt:323 msgid "Phone (mobile)" -msgstr "" +msgstr "电话(手机)" #: bika/health/content/patient.py:597 msgid "Photo" -msgstr "" +msgstr "照片" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "请更正指示的错误。" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:156 msgid "Position" -msgstr "" +msgstr "位置" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:43 msgid "Pregnant" -msgstr "" +msgstr "孕" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "预防" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "预防/预防治疗" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:158 msgid "Price" -msgstr "" +msgstr "价格" #: bika/health/browser/doctors/folder_view.py:54 #: bika/health/browser/patients/folder_view.py:92 msgid "Primary Referrer" -msgstr "" +msgstr "主要推荐人" #: bika/health/browser/batch/publish.pt:124 msgid "Print date:" -msgstr "" +msgstr "印刷日期:" #: bika/health/content/patient.py:81 msgid "Province" -msgstr "" +msgstr "省" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "临时诊断" #: bika/health/impress/reports/Default.pt:256 msgid "Provisional report" -msgstr "" +msgstr "临时报告" #: bika/health/impress/reports/Default.pt:425 msgid "Published by" -msgstr "" +msgstr "发布于" #: bika/health/impress/reports/Default.pt:570 msgid "QC Results" -msgstr "" +msgstr "质检结果" #: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" -msgstr "" +msgstr "范围" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "合理治疗" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "定期" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "相关事实" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 @@ -1137,204 +1138,204 @@ msgstr "注释" #: bika/health/impress/reports/Default.pt:630 msgid "Responsibles" -msgstr "" +msgstr "负责人" #: bika/health/impress/reports/Default.pt:479 msgid "Result" -msgstr "" +msgstr "结果" #: bika/health/browser/analysis/resultoutofrange.py:114 msgid "Result exceeded panic level" -msgstr "" +msgstr "超出紧急程度的结果" #: bika/health/browser/analysis/resultoutofrange.py:111 msgid "Result in shoulder panic range" -msgstr "" +msgstr "导致紧急范围" #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." -msgstr "" +msgstr "结果超出客户指定范围。" #: bika/health/impress/reports/Default.pt:449 msgid "Results" -msgstr "" +msgstr "结果" #: bika/health/content/bikasetup.py:107 #: bika/health/content/client.py:71 #: bika/health/content/patient.py:655 msgid "Results attachments permitted" -msgstr "" +msgstr "允许结果附件" #: bika/health/impress/reports/Default.pt:555 msgid "Results interpretation" -msgstr "" +msgstr "结果解释" #: bika/health/configure.zcml:52 msgid "SENAITE Health" -msgstr "" +msgstr "SENAITE健康" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:74 #: bika/health/impress/reports/Default.pt:393 msgid "Sample ID" -msgstr "" +msgstr "样品编号" #: bika/health/impress/reports/Default.pt:351 msgid "Sample Information" -msgstr "" +msgstr "样品信息" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:114 #: bika/health/impress/reports/Default.pt:405 msgid "Sample Point" -msgstr "" +msgstr "采样点" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:65 #: bika/health/impress/reports/Default.pt:401 msgid "Sample Type" -msgstr "" +msgstr "样品类型" #: bika/health/skins/bika_health/patient_edit.pt:12 msgid "Save and create Clinical Case" -msgstr "" +msgstr "保存并创建临床病案" #: bika/health/skins/bika_health/batch_edit.pt:12 #: bika/health/skins/bika_health/patient_edit.pt:20 msgid "Save and create Sample" -msgstr "" +msgstr "保存并创建样本" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "选择一种免疫。 主动免疫需要将异物引入人体,这会导致人体自身产生针对靶标的免疫力。 疫苗接种是一种主动的免疫接种方式。被动免疫是指将免疫系统中预先合成的元素转移给人,这样人体就不需要自己产生这些元素了。 目前,抗体可用于被动免疫" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "选择一种治疗方式。" #: bika/health/content/bikasetup.py:95 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在患者的“发布偏好”标签上覆盖此设置。" #: bika/health/content/patient.py:683 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "将发票发送给保险公司。" #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "%s找不到服务'%s'" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "服务未定义" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:28 msgid "Severe" -msgstr "" +msgstr "严重" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "允许的严重级别" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "休克治疗" #: bika/health/content/bikasetup.py:133 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" +msgstr "创建病案时,Doctor字段是否为必填字段?" #: bika/health/content/bikasetup.py:49 msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "出现紧急情况时显示客户端电子邮件弹出窗口" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "具体待遇" #: bika/health/content/patient.py:243 msgid "Start" -msgstr "" +msgstr "开始" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "主观临床发现" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:188 #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "小计" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "亚型" #: bika/health/impress/reports/Default.pt:194 msgid "Supervisor" -msgstr "" +msgstr "主管" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "配套治疗" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "症状" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "病征" #: bika/health/profiles/default/controlpanel.xml msgid "Symptoms and Conditions" -msgstr "" +msgstr "症状与状况" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "药物适合的症状等" #: bika/health/profiles/default/controlpanel.xml msgid "Syndromes" -msgstr "" +msgstr "综合症" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:207 msgid "Taxes" -msgstr "" +msgstr "税收" #: bika/health/browser/patient/historicresults.pt:213 msgid "Test" -msgstr "" +msgstr "测试" #: bika/health/impress/reports/Default.pt:713 msgid "Test results are at a ${lab_confidence}% confidence level" -msgstr "" +msgstr "测试结果的置信度为$ {lab_confidence}%" #: bika/health/content/patient.py:702 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "合同涵盖当前患者的人员的ID号(保险号)。" #: bika/health/content/patient.py:693 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "病人和担保人是相同的。" #: bika/health/content/patient.py:692 msgid "The patient is the guarantor." -msgstr "" +msgstr "病人是保证人。" #: bika/health/impress/reports/Default.pt:247 msgid "This Sample has been invalidated due to erroneously published results" -msgstr "" +msgstr "由于错误发布的结果,此样本已失效" #: bika/health/impress/reports/Default.pt:250 msgid "This Sample has been replaced by" -msgstr "" +msgstr "该示例已被替换为" #: bika/health/impress/reports/Default.pt:709 msgid "This document shall not be reproduced except in full, without the written approval of ${name_lab}" -msgstr "" +msgstr "未经$ {name_lab}的书面批准,除非完整,否则不得复制本文档。" #: bika/health/content/batch.py:138 #: bika/health/content/patient.py:79 @@ -1345,169 +1346,170 @@ msgstr "标题" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:216 #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "总" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "传输" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "治疗方法" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "治疗文档" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "治疗护理" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "治疗程序" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "处理方式" #: bika/health/controlpanel/bika_treatments.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Treatments" -msgstr "" +msgstr "治疗方法" #. Default: "End date" #: bika/health/content/patient.py:440 msgid "Trip End Date" -msgstr "" +msgstr "行程结束日期" #. Default: "Start date" #: bika/health/content/patient.py:439 msgid "Trip Start Date" -msgstr "" +msgstr "行程开始日期" #: bika/health/impress/reports/Default.pt:482 msgid "Unit" -msgstr "" +msgstr "单元" #: bika/health/browser/patient/historicresults.pt:217 msgid "Units" -msgstr "" +msgstr "单位" #: bika/health/content/bikasetup.py:60 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "使用“ /”符号允许多单位提交" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "用户名" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:157 #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "加值税" #: bika/health/content/patient.py:377 msgid "Vaccination Center" -msgstr "" +msgstr "疫苗接种中心" #: bika/health/controlpanel/bika_vaccinationcenters.py:52 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" -msgstr "" +msgstr "疫苗接种中心" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" +msgstr "验证失败:'${value}' 不是唯一的" #: bika/health/widgets/analysisspecificationwidget.py:124 msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" +msgstr "验证失败:紧急最大值必须大于紧急最小值" #: bika/health/widgets/analysisspecificationwidget.py:114 msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "验证失败:紧急最小值必须为数字" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" -msgstr "" +msgstr "经核实" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:52 msgid "Waist" -msgstr "" +msgstr "腰部" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:36 msgid "Weight" -msgstr "" +msgstr "体重" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "白色" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:58 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:38 msgid "Year" -msgstr "" +msgstr "年" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:46 msgid "Years" -msgstr "" +msgstr "年" #. Default: "${Y}-${m}-${d} ${I}:${M} ${p}" #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_long" -msgstr "" +msgstr "长时间格式" #. Default: "${Y}-${m}-${d}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_short" -msgstr "" +msgstr "短时间格式" #. Date format used with the datepicker jqueryui plugin. #. Please only use 'dd', 'mm', 'yy', '-', '/', '.' in this string. #. Default: "mm/dd/yy" +#, fuzzy msgid "date_format_short_datepicker" -msgstr "" +msgstr "短时间格式时间选择器" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:26 msgid "days" -msgstr "" +msgstr "日" #: bika/health/browser/analysis/resultoutofrange.py:106 msgid "maxpanic" -msgstr "" +msgstr "紧急最大值" #: bika/health/browser/analysis/resultoutofrange.py:105 msgid "minpanic" -msgstr "" +msgstr "紧急最小值" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" -msgstr "" +msgstr "月" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "保存" #: bika/health/browser/patient/allergies.pt:22 #: bika/health/browser/patient/chronicconditions.pt:22 #: bika/health/browser/patient/immunizationhistory.pt:22 msgid "save" -msgstr "" +msgstr "保存" #. Default: "${I}:${M} ${p}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "time_format" -msgstr "" +msgstr "时间格式" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:18 msgid "years" -msgstr "" +msgstr "年" From a0c3d3abab42f3ef159e46caa25f89bf8e50e369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 2 Feb 2020 23:45:30 +0100 Subject: [PATCH 25/37] Updated contributors --- CONTRIBUTORS.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 1abead69..088e1aa4 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -22,9 +22,12 @@ Translators - Jordi Puiggené, jpuiggene@naralabs.com, Catalan (ca) - limsgr, inactive+limsgr@transifex.com, Greek (el) - Jordi Puiggené, jpuiggene@naralabs.com, Spanish (es) +- Pau Soliva, psoliva@naralabs.com, Spanish (es) - Alfonso de la Guarda Reyes, alfonsodg@gmail.com, Spanish (es) +- ale meng, aledeneuquen79@yahoo.com.ar, Spanish (Argentina) (es_AR) - Alfonso de la Guarda Reyes, alfonsodg@gmail.com, Spanish (Peru) (es_PE) - Bidossessi ALAHASSA, rodrigue.alahassa@gmail.com, French (fr) +- Walter, French (fr) - Alessandro Ciai, a.ciai@btree.it, Italian (it) - ສີສຸວັນ ສັງບົວບຸລົມ, sisouvan@gmail.com, Lao (Laos) (lo_LA) - Piotr Turek, piotr.turek@borpol.com.pl, Polish (pl) @@ -37,3 +40,4 @@ Translators - Arthur Markov, arti.markov@gmail.com, Russian (ru) - Andrey Stefaniv, stefaniv@irm.kz, Russian (ru) - alex r, aa989190f363e46d@googlemail.com, Russian (ru) +- Zhuo Song, Chinese (China) (zh_CN) From f2a18b299b093cc954a3c5c86820a2af9c208801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 9 Feb 2020 21:04:36 +0100 Subject: [PATCH 26/37] Cannot create Patient inside Client (content type not allowed) --- CHANGES.rst | 1 + bika/health/setuphandlers.py | 14 ++++++++++++++ bika/health/subscribers/configure.zcml | 6 ------ bika/health/subscribers/patient.py | 24 ------------------------ bika/health/upgrade/v01_02_002.py | 7 ++----- bika/health/upgrade/v01_02_003.py | 5 +++++ 6 files changed, 22 insertions(+), 35 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index bede02bd..168b8084 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -20,6 +20,7 @@ Changelog **Fixed** +- #168 Cannot create Patient inside Client (content type not allowed) - #162 Unable to search by Client Patient ID in Sample Add form - #159 Ensure `Client` contents allow to hold `Patient` types - #158 Fix the filter query in the Add Sample Form diff --git a/bika/health/setuphandlers.py b/bika/health/setuphandlers.py index b2cdb989..b96d0e72 100644 --- a/bika/health/setuphandlers.py +++ b/bika/health/setuphandlers.py @@ -117,6 +117,10 @@ def post_install(portal_setup): # Setup default ethnicities setup_ethnicities(portal) + # Allow patients inside clients + # Note: this should always be run if core's typestool is reimported + allow_patients_inside_clients(portal) + # Reindex the top level folder in the portal and setup to fix missing icons reindex_content_structure(portal) @@ -453,3 +457,13 @@ def setup_panic_alerts(portal): "that may indicate an imminent life-threatening condition:\n\n" "${analyses}\n\n--\n${lab_address}") ploneapi.portal.set_registry_record("senaite.panic.email_body", email_body) + + +def allow_patients_inside_clients(portal): + """Allows Patient content type to be created inside Client + """ + portal_types = api.get_tool('portal_types') + client = getattr(portal_types, 'Client') + allowed_types = client.allowed_content_types + if 'Patient' not in allowed_types: + client.allowed_content_types = allowed_types + ('Patient', ) diff --git a/bika/health/subscribers/configure.zcml b/bika/health/subscribers/configure.zcml index 0b9175bc..9b9a9a77 100644 --- a/bika/health/subscribers/configure.zcml +++ b/bika/health/subscribers/configure.zcml @@ -1,12 +1,6 @@ - - - Date: Mon, 10 Feb 2020 17:44:21 +0100 Subject: [PATCH 27/37] Update test file with some fixes Some Analysis Services had the same ID (S132), this new files fixes the services IDs --- bika/health/setupdata/test/test.xlsx | Bin 412981 -> 413329 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/bika/health/setupdata/test/test.xlsx b/bika/health/setupdata/test/test.xlsx index bd7a2eb05ab3754109d587fc1f4423e65ed38826..9b138a0a651ca605a84c2562cd78a00dbfc46079 100644 GIT binary patch literal 413329 zcmbrm1z26pk~WGg++BlP*ti6T5P}4E2@pKEyA#|sxCVC%?(PmjgS%@W_}%3DX8yTz z=gj@jIXn-wTdLmfRsDAL>h2BlQqTZ41Ux)E#M=N#d5Hh=g9J|N*cn;aGc&!&veLeS~VzjelZg(VO}0` zSD!g$MHCwPN}yAqQB|;!UjnVAxKGHgeQe29*|E`C(D)p375e3L6&(Egl3(he!gs@S zziCmM7?fq>6SaMbP40M|OF0+MlWgGmJ!YS*GbSl>B`5Qxdk2$EY)0yD6sv#;_i4*B0`Sk3MR? zol^80shA*wnxSM4YkK&&*a6Do5TR4{t@~?&2 z17SY%qLBio5gS1praztpU~}utoi3*uoy+Ibj=sLqi|lI-CoLcT9M((#l{K zEBaM-c#zLzfPiA5#(Bf?8uBv-`uF!XRpjnHmH8aS0_p^pHBP4NcMFoz$1OQt#1X#6 z6{xtxQ@*US>;7vTd!h{xgQT{eJ>T(oRH`LDW=}|vSit2nXcdo^J zsHQk4_gd4NJ(vD8!N^SqyJ&wSPd3#ywEJ$0V=U24gL$_u>0qbP%7A>S4CnG!_`})i z$kDm__T}c}_QLcq_9~k@fBGGb7k+9*A~!#%E0}IY#@@c+K-B_ zZV)w_!Q$&HWsP}yq`$@9bL6+7E>(@Je=IV}s^7*7Xd0oZTwBBotW@ik9DN(gXfucW zlUH8&u5vAJG_JZJ@_&?+c`Ct$+a0PrZ{wjgw;@zeE#je9BtMrBXAOO6OGW;Ze^EmH zuS%+QLy*O#7V$X$O|)+ql$6RF<+X47(StON0{)92ddY%?-~S-G#hK^niIf-i3YfEo z`cxPG7Su1=i5Brvg?6q=@k(mr=f7Q(@4vMQMmc-l%Z)C#HJp41%6ysL6Gy8T8sMp& zP4~YMl;|&l8rtbOn_3y$Gdo#Yy#Fixh6$WLPF%K5WkK(F#(A&v8Zs7Lms;^h(LuLh zZrK3|s6T0~?|1Yum4o-=*jvS>pyJfoA~a!gVrS!f!H2lGusU4S6-DFbpUd>grXQ

ZiWeI}0Uumk(%enKx>pKw*zU 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 z zcvkuJY_vM6?kpwx_;z;Z$9nB`_UaR}{qC0$y=9lq3^m{H`H*j|^?N@2MKMx<XHz@__l5sdj6C3&c^YA24arx@_ebx7Axt?f`1z`0z>+zc`{8B z<0=e54~k?kW`#YTmq`sMsmgM4QyW3-LlE!Cr;D@-B8uri^y#HQrN_tL6T3A z16qsN;m~g#o)p)eOQpwe9xIpDEYb_eRiR4iD-^RdB(82^V^yX$eTAJ0SCcyTFRUgS zduBS{UhBM&)DzvI*do+4a$P`g-H6!Vko?Pqti*Y%TkV}esF8gF&qv{5+amFvjRu)5yVZ`0GqFsGIfp(eWle~qFQX&zT&nOnVZWlx9!{glbc?^@k598b1 zjK9yS&Vr1R@kZ8GNy+fsIbZ_6si590d~#eMYrIXYiqJWIfp8Ywq2`|wWCIl~?#IVc z#*Lp=6jpp;)KQx&nz^M!xpM}$Mf1uh<0&7T0ApmF(F`mJ>yZzUhGun^M7w&8fp#O~ zlBxyNi7x~9Zs>gZ(Ks8nILf%fe-%`bE6UqbdIH1Lz@zkrT_8hkzVpF78|JHqS?{Vb z+lKnmhFP7}(XO@QpxqB~Nmm8R7Qs`hI2y*U&JA%n`vt@#$WR;jkpwfwzbAo}O-qSb z#CZY7iO4vm_D_)!y-O6Kb;}R*e&l{pXaN& z7=&K6kLUiFy&=J;unXI)KjD@uc*OwvOwVR@B&T#i--th3t-;;3z3-Yqf4{+*s5x|p z;bA2chPd!RH*zJ};#A{YzBkdJqu}=@ws!_w*_^%#?QdWch=`2KyqiBGqOb__Y47ax zi(60M6n%j|+j;Gne`FnWH~vR@mVHalGJbF9Z|S*cY;>m}|H44$aFwIYr;1Jm@9NIN zxJ(J?F!XkQ9cp^#i5>qi?!~`qRrXi4syNr7?*6^AzKt0EYfz&+ zu^g9zxDKZs(I>p6`V+T}j7|&YX{gxfX4-zArwq38`MdwLsPsdnXcv+`3e+)kx@qw|h>%_m{{dpn18Rrs5R`qRt za7Z%Q6^;{RUgcM}G3+qEKTxvc5f_)lPrvDB3J10GlDOW>7p%9cKpQ5(?Tx>UK%+QF z9u>MzMDu0u)N5veR|n8W^1E{iA_mMZY(&q13|MNNF#w!WG;3+TSK;Mc~j;j+j;rrIkEg1B+FQ z0OFYOwK2F;^nJ|C{j108ejhUh0@VF+2G*uVSmBydJ5wY6Wi>)_eq?4(Goi~3Q_=K2uouCP!W79-eRgOFefb9_N*@r-NL+Mo}0SD`DI?pC)l{RCp# zftaATcG>%h^JjG*>U)9;B*A`5PSJ=qn=(Ow#Y$BwB{u zD{;cWj4p{74YhX~$Eix*Gns1VI&@^6CM6-Z5WcJYt%c2f9Y0!l)#$etF4_!jl>S&D zx=I&qY+j|_nq3F24;r^~Ys4Cyl+j3=KHSzaDsbH{U7^}FBqAwFP2@+<&)EDvVO@>B9jEoyJOy4v3r`X#V9&F_rND+a^=6j|a zmJ)~ZpOK@sGtAV6WyruI$#hqCJ!ipih`+Hj8qaUCZa9=wvbD=c040O*j{@Nl7|Gtw zeqZP{|G1pEhVKb)+EJA&Dukapfe~zwRe!?{a#KI*3=6bjIW*jBzzd`he{owyf2uRiC5I4#D`2R`kwpUY*Go+xHK@e5y4}2~f*e`dItz*LRQK+wf0NtRJ7F zIMEs8I?Hqj{m|eq5Z(}%zEvPNRCRZ!Auh&9U^{#fz9|T#{cQWbOMl(i8N(ODC-Z%} z%8s@*uvD9kU|0}8m_4Jgdy`WSV?c-F&wgKYcW>43>Q3JIICGnhfVlMiywq-3(&IkD z^kK-Y3va%U=92HD*$4V1Kef)fa-58;eiXxnj8n5sNMb%Iy>-3V z`Rdf}wQ>QGAtW)&O~u8FX56nBU+-|;B%&GSbFDTJ%}%IMfA8=dYx&>NY%Yd$+nzWT z+vOZupYJ~^z9B);yX-qN=F=^&#Y_i9+sPuCxl7?NN06JY$B7QP~PL1su z8=SV^Bb!xTX?`Mp7CZ3!iA=I2)Mw6$GF?4L?dHRzb`Na}J-SYj7W06Hmi5tjzvL+< z|Kz?)c;Y(|HzhU-rLFCnv_Cibt}A~ceinV#i3N;@gno-X>y_Pq$%pvy&)y@}KvU*N zXh4Hbd75kN+Wdr-?%?5%$U&gwqrLDaefUXV2$gT>(^n*lI;7VgDSwK5U9!%m6mpF! zjGRV^cIDDprE8DgHFz@7u3cg!)={E3-HvJX(pl`d&gHl17T>E9`C6wu-EPHK<V5>{orwKTS1!>w`}`u_^I7SBPf`8jl+N zIO{H2jGA~-y;6iP^|#*rb`o^5e6PON4&nK&lk6BfHM)dT`y2LIgw{k@&(0_ulC1l# zf1DZ*dL=I$3*2bfClgwu{+9zQ(bzWN7e-$F(WePGr=?oD@Gjz@D|_C0PiT>Adh`0~ zf_rpi>y^QW{kJ=&x3Fzsk0-O!nFl4Ch~h_q2hZoavMrMjq}ikT8i~&+Nf!BY9OW`c zwWHHk5!Vk1hZZ1T4coNt+i17Xw$ofMcq_ccG})Oe-tJi)CK`(wbq9Q5w?)qnPx0l@ z+M*MV&T9s0I`nqTxNi^Im9z4u(PLtshi61!qPwTs#O`hF4|w@$`>Mv&2|kjhnkuSr z*<$Erwx4UuEjzpr;0L+pLrCs+Fpt@E+j2HDfkdd3tyzkv`n52H14k6Lbn?@#o3$rs>QS9Jl_T9Ki7QM=&*SQ=KJD9^kp&4 z_?|wXN>qh8df-c78Q1g4qG2x8u)KEMQO?Cxr*c2JRI@ecn6rDyiUq-z8&oVy$KN3@ zILkrEncdLBWK@8|c70C0TC;2L)(B?U6tnLjV!ksv z44IUY#vX+}XS(UBpk*Ie<|ei8zdyg*pJSpm@%4jjWS{9+J{V#kalXg=-DXiQMS2I0 z+cbYMp8%#u&mU}9`WzV64O_2f`6fN#i9jdp(k=5n3{ThJ8X?0A>v82d45Np?G-e8pyuICKG<;{HW^}l~V>BvV>2m!US{5z) z^d4}TsSjq|W*9x>a6^4EtH?P9?N;A658;39CXoP<1=c}qBaE)AN%@+$Z?<}Z&WvAw z!rb8z8eVp=xnFq1IVSCy)tfgqG#}F87X7X-!bpqVbT1yRUWgUL_*n?sMss4>yb~K9 z$1}VUVX>-5)_?KIg!}qIN;H}C=mMhnsMF}e+ra^idWT!~(&t~~Gh~R39$v*Go+H@C z33VeznBFw>(Ebl%7R?zqXz;g(O=?2CMt#w&CuXb?@tjM0FKUjBwu#})-t_o+j5UT7ea<>ZDCfXwl(^oCU2>(e(Y$K{apQUO&DcwN;I~)$;bdb& zui0uD%U06y4?Da5dyZ*%jw-ySn2$nZSJg814Frf6Nfz(0#KjdIP}yvtb#TZ4KM z6E-0@!y=ijkzP0=;UUoTkOy7DByzLnarnL&W5|fD(1r(v)Tb-eXnad#?U{S||huqD|4$j}40}-9|FMVCU=7~?a2g~}%(E2RQK0vpmi({;S z#!bxZ-d9iU&D+;gIy|Z4x^<$waQ?=`e8te(1ahz;T@Z1)w-gqEnSWDfD(+bRVcRa& z>xOhi*X6ULtn*(P<~fjM^ONTvAogTZLj$I}OdRNHxRo zEx{qYsWiNXFUK%9LP%B4o|i^jAH05if?ncG160|?AK4tFM?=SECFZB296X;$gSE-< z-7=91-v?9LRy+DD+^X&4h`@2)xWXdRcvn|e3hebJHfwUeCKUOyUPrn7^VWSTzRH`f zm!u^pujtjh*m-8Z?T9m7%<8@pV$`Io#Qo_V58l=m6LuPw!;wm%w#U>B3Z+u^j*RD_ zLs6kFALo>JG;X;S8Nd~%4Zc_EM*mKs`E8Q=W#eZILVUv{t9IU^$d8>hP__rM3dO>J zb2(_Z&9MiYcG4ft6692_u+4uo(ys7ScOy+FAL}!?Mhdu%377uJJ^T8WKnB^HH;)Qo z%}^o5tW(z#UMEK+SiL(lc}{WJH#c@w5;#)7-szC-U+w5JzQ68Nxu{5{=;59<-9p?_ zvYdPiPrnb|S^wH|nQXXOSt#jU!Q~*7v{n*zP;#WyS4a!gOV+>e+}8~Q&UMz6lZV3L zuBg@1K#KR!K#@Wf%yF~4|^e{ zHHP%H#z~CTNK4o#`KpTj#ZFE>OP08(CKjjL_6+X}v0S+iK1Ykbw-~I>o5zYBIkvj_ ziUi+P)hy(I#%?DKCg+{85k95%wAtg_>LG8N}%R?RO|q%h$cbRBS&z9GTa%-6*NwN+wWzTklfT zkbXJD4I(6o|ES{c-_rh@XZ^n~cRj|YuFH}P{uAb}PS?m`wM{Z)*-&ddntf&*ReZ^# z%!5+zUR!aNzR`8-n;BT&Xf1{444rsuIC!0F?+$A6sv=#~^i}-gy7Qup&Nx$kGS-ga zfV}`JD3TjqeKfna)ZV>+Rz5d1Hvjd#qfkkLRzzT`tTC$O-h_=MNz>7Eh#hyzN zSH0-lEe^)b?~^x$PHn`4At}jv(RtyOvrH87Vq?*-w{~fGaWeOccWYpus4It^?YVcj zQsZwlZKY`FND-#=l@6ZxF281q4ZM9-&{v}~tR<0SUmYs8wi%AC4zvltEl!p5(C@@Q z5~=Xf9W9w?Dh>p^%f3C_W^X3v)REA>=(CpgDy9pd&N92HBA=G>!LewlcwXRsv4Cn> zn%0@XIi&zoeWv{2^~al@dodS2tKAd<6HFD z+0`)PM6x!(ZTu*gy{aJkqvKYK$0HVT{{2rfR#AOi^R(8-Pt&O0(U^H5p0^=$yq`DM zu#Bd)P#(N25tx(uzFE@t?$X+_zenNchG4gI!uP|$5x1P?0wm>G$;w2Zn7rl?Y1HnJ z&OfI$(_>|voeM`PuSz40%G>$)|J~;faGNRAJ(k=U*3= z+i5hqi=RAym>_~0!>tin$-hLu+{QRy5GMJ;8-?>M2${Nu*RMzeey?o7w z)<>YcX;)a$BdcQlT#9BvaX91Gu0-4LmmB5zv0Buz&o$F#q@VOwciDQZlzo=HvU>3K z>)?FLf%PLl`|8W_NmFEYcGXSN*3#Xf5GxV!c59mRp`5}WG(P4>Ft#y&?6;?%QZQ-x zdaMhkO%FY2X1ZqSf4O~LntxQqb*A^=f$OZu%B;xwPIK#vqiGq61-Rs#YZ2#7n7I38 z`!y|h;?aFq+Eg@i+8!X(=pc6LA1_{DPeKkVJ@9{N#d2yd61mTMO|xF;)IJiqj~jw; zT@-(IC9&x}`~pHWsHE-2)F8u^^2D1y5H}$e$WHFC)a?uIpi@SW3}K#?Dce-HxT5ly zHpSs-PPQq|b4lUdZ6T&yVl4E;4RLQ5mRUY8rJnxGmoTJVo%*C3)!p{M;MfOSIv$0* zV}ei6EAKnT8O!KgdQeVwS}!fE`K_DSSvV`XwZC4tSgxe~6@IbQM*Ab*Gi3_05Wklt zhj()7MJo^Ggk@K1-PYaRG!?L7W4^mZG!NRzqfEd0`mokE?K73^Jqj)~{ES9n#7MLgJ?6``*4w>?|b;Gkf&tTMy!^qIfPg@oY8E9!k-MuUv!d@m;+ zlt^5>`|#bRiso8!%1 z=`(eTcdwp&<~}j~UO8F1?|eJy&30y=_nA9zlSR&i&k@c!wsnFTL&y3`LeJmjs~&{j zea}71VA6S}$SQ;K?!`8%<;yF5_74lt#p>DIm73ya%zbvp76++lYMEeg0nrs*i-!eG zj}zo`!6lh?l6SN>iTAH-ccAcz>w}q94A{A5;rh64@~4qPg~jT(GWR4xOsDuOiq5Ps z7%nzRgtW)&4svJeVw0PN`QnBLXgpMNnxijQy0i$7#qQDNs!L_ohb;AJgmBwCJ$qn! zfp7J>UcyZ^-}%dj+Nx(wxGfXZ)K<@(uGQDQJ@IBRGn!nzZ;+qz+t)v_p9Cnirm*z{!l=h3fg4*APUw7>p>SsK+G@JSbJhxK4 zRariKX1`Y9z3Uj*KP`<_puf!4?-EJ5wv zk>!=>fZ+$yw)q(uea;drU%g2pRq7=Z?pmhVqu-3bQr!NKojXoB;$mzt!y+gmk=XV6 zR8zn4KGmx>20Nw8|ra9 zd|tK>T($5vD>;ETkANSK8WZcXr;_@Xnr5pdo7i~_)^eb^7h8k{Q8oL8^7Q>wa@Mq6JJa9?rOZ>6E%;3nSWQ5uuB{9*R_(nJ;w z)98fi##b3kDXA_)jfPI@JOYy5+_`4%*?HbN4^xa;1iWr|TxZ8@v(wdkSI)*)+W5D6 zZFcg@cXG%1c^XH&xWv+y3$~D^1v3(~<-Y2=Z;-`YRbqqxZzSQ0qb ztPhOsnf1&p6I9XA(C(2+Uph&CuZcSq7re*UCCh6_8Y~*Ok1yzUq+undgJTqql}6{Y z_vYeyH8_XkA#YeR(D=8(CUzZ_r2^&8@DZm6J!tDo4XYX(M!HQuhkkZx=Cq;cdh{i9 z^muNyN{m4{eBU>-epL0|RR8g|O+1!~DI$MdymCa*6MoJ8 zV-wd?x$bKf&z$*LPjQYc`eAM!w=xOb&C@jCH!AN@x@owt;?p!gnrD9Gb<5yIt5@yg z{(&zs>C+C}w9fN}*joioF&6bFp`WDd3InLCzL>ib?(H(PH97-ZL~}BD zVXj4a^s1$Y)zFb~*#}Y0d&Ik;%R5Q6mjY;_cP#zPM_i^vVKX8=x4vjbMTs~>HQzNI zdpz%(EbkP9k8fBjTWs)Xh zL)gohd+7YuX>Ybb&1^qYQ(MOdwcaz%rH-tV4sm1l6?aqEM$|;^AfN@fGfGhe=VG;i z#hHVHv1v2H)|6f4Yt0QIpUwfBBd0xO%vq&I8^s~-DDh^TWa;Vg6GJI3;0Ooqn<{Co zRYP?$8oL^ONp9b=;}w>mYW z`O?_@Ro5?Nda(_OxRsk&^ZL;lE^Z!Lk4I(NPK=qXwzjzz_K}UvHQrXQrIH-+^r_Ms z;qn>nb!gu%z9rb=zG$=UC`%rgQ3h!g9ylCu-V&NutuXVLzbYex+2J;M5xAF}jdgqx zZ@P`{_>{d3teXp1X?NK<*l`LR)3O=R;O^b>Y;lR(&Xfw_dRzS{JwYwC=;PYdwWn2i zzo->%hD5- zb4x9P z`^a>KOp8PxaQY@0S{kw}TF_cf_kTAeEF79X-_Ie@Bh4a*&?cT0{fEMX97?^Iz&kCU zzZr~KJP?hm9 zZ@=WfHcUjFo6E`2%#fc3*z&$Tb(Ta>HD=mk^?9XNW+X!$vftG}fh&s2H z)BZPu4suO&mG}xH`i}-q5Rk=|=wUG&WKZ$8Mh>YSMHU@|Em2z3-D0WfbI=a~{5AA% zJpT$E4z*{=GEMZb{14+WM+Q{%?|MuUHwmEQw8)_^3Onb%cYjj zp*hrgELp-3)5IFlKMH{jhWT5*?KZPh8@ntBUik6 zbe9O_Tmsj&`s+jPAzbvG09ENmt{3Lfy&{wg;;%%MciJ8|u=cU&Vc-z+?!^dse^8Ey z@@`vx18YAE8Uw#&-n|?V%)3`3n*Bl5BFg)1D-EpUENCp; z&%Ap*f+PUcETVkSM$^bT#iECUKQ`~)jF1lib%-b*wh1<}&at3z@Kp2e?TDZN&?gaP zOdF(;b%{j}56?I6-i>Gu01b&KW80h>S=U(5czB(8_kILPAZSuV8Q1o>k#&njj{xsB z?>>x>4+JfWDC67m8(H^Q&;0!&EZ&T=cX z$TpIas~k`Y)Y^R*J79zq?k~4Ok0d)@BF_OmiJ}XFT>zMzfIpF2IfYa@UZTnYr9=q_ z!FT{8C*aTJRv3|?$4hiLpj0T$AQ(TugbZFFw{jZUcD%%h14@l@34#d&M#$jxaw{xI zGSU)D4k!&OG6*IHFd>Kc$gP|~Dv_4hb3kcPg+VY$zz8{fOm5{IGL*Cg!2zX1eF%a{ z157C3t8y!B$TrdvZw@FuYApyR3mBn*NU{?pK^#y3iY^$Y05CZTriDFa4M!rA0kE+Ruulsw~rGN3erVQK&qO1O~x3OBOtL`f0{lo90;4ATUR zP{L*8S9p9bRjS}z=Q_= zM1BQ?R3i7c6Z<^1Fk2jfwwDbcRKHC^2Viq|YSCrs)GK_u2=VN(W^h9SdhK;W`+Ajq z&D%P`6|~!x+$-~1wY(o1!1GS%{6Mb{t}HU$hdXaYXMH;4dClqC{oYb`6KY3n<1~+4 z*VEkNwN_`k7TcAMZoLf|v$RbEv+rigm4TPKCfRPoQNvGC&Ce^Z;6d5PWR4OBrs~{; zWLZ2JuZfsM^tP>{K9n%CmJol;PnbkR1bPbzcMeRI7c*m9KghE0<`grtv|%rU;FhR{ zgK^_qgf2&fQ3JDWXvJIHtBSXN{`=?qk6-NP?w?|C)bXv_9p^DCWb}-29WwGh8RAs* zX?0S0eL}KLF!Eq>WIal!4kvER+uV6_K$W#|1hR4Uam=hx+MCtAgB9{kyjcAP|Ah4R z!NS(|>|p@7rz%{vyhBQ{M=}U^mYc7Aa#FEDe17DWr%r60@2zVqT$u74r(g|MY!|q7 z*`c$}ze;azOl+KIC?K&uyS?bJE3ej6Wj}@E#R`yp?|DA76kUS|SXJ67WtV;6C{;hO zQ*cTIZPHUES6}Gz`pUx)o9GX|r$-4{yYQ`I2;I3PC^KTirR(F!oeHtn?M@TMl`Zv$->-N{4JF6&=#CxJH2i;Y#VdK` z`!3GJE8dj(pwLhLM^wx#M(&Q~Lf4+f)+Ek*k2hc7dIdQ}b5a!%;7`gS!AcS5Vd%+R zdBA|$U~7x-zGi{hybveQuY>uVu=h1i7s-%p3 z=^==_N{!HWjS*T`Yui1mM!sw<9Vh_{fneXQne298{BlYc*7sm}uXnV4Zgpfg#lU`h zZaVx+&l*9qGH-d-zm8kq+FVYk>hjE+bdYM037B;$UtFbc@S7xTM*-LNcDwR+2_^Ic%kWws z?2?$)QL@MM;iP1H3Zy@;*K-1onOeio-LpA5D{CgQ-Y`13SzKdkUePa=hhKETZcg4Q zKCBB2tH8$%r~4f}Y;&kR^eHxN^lc1`Ech}qHc&g-SUI`mvwOR$2GiQ=23{-Nj}pV- zTZ>Ybi}vqS_|)RO>aSf7pFVwfmtcPsYi>GzzVL9DAS+cB-hQdDu!z2BXKSiwvT_$s zirZLJyTE@HkU}iczfu51(0X{x&Ul+`-r$n_cZ*2^mDie^u0^$3wX?ugZsTb z%c!VB%fnuL+31nK|2-UbY;B+Pqln1f0EQ6of`D5HPoqniKiUVS$y}c+yBBqcTTBO< z<2u^?u3+zp>~xd?+1d9GtJ}xa33qVM?*zt0B{Yq8D@Ta+ zOPY8RaXa!4U(d*e*m2NikwK^vnMH*xjGM~u+moP=|5E`Z1UE*NBkfP2FJvh}A`+SZ znb1=Hz`i380XP0;P@);KxFPC^@uEVO|3d%?SsA}8Ur7rS{cb$AKZ6#_vVn9Z#{cmA zjc^(wkO&nmurS_?di%p@E)TXRLsMn_^8BT68qJ?&0Le>)f(kGbLf;N>TTEry%QgX~Gs!>ICy_KawrETRw~0{CJ4 zhv(k{HJUj~2x5|0De7!F+)^HD|6OQoj`(5xhv%p8uKbDpIkaS!Gh`&O669<({6nam zsA&Id&yP?K(N&A#=JF7G3N&378{}HzFQFaS_BWnyp{9`9L=Vs^e7LPV!kz^!{6}HA zcR=*7JrVZwX!a}_h;QPa=&I##YkByeh3)XHzwxw}N7)0>vRVERY~mhh)oS=R0ULAY zuRL_3Y!=c@Zp6)Q&?H%;5Q@bA6jG)BA_C=xTm+ywvlJoWiF6<~xb$BL3%ALBk2r}w zm30xKk{BtrJz8W!^JVElvJ*8y&*9SlO<0rr89{?SlO+zZP5dDG z+)}#Ljd=C?Uxj<45#J;3LFN-bfSy}Px4T6yo=0EJ`d>nIgfsCJVNp|ynkKiP#p7tQ zENTeLKM_(V(}pImp}=J*uy`A|tPL#w4qWyQEZz<-YX^(J2baAEi+6y_I>6$c;IdAz zco(>=3oPCZF6#!16CZQz0gHbCmwf<>_kzoM!Qvl1UjcbBh;*O|29XK0#UQeQ;TS{? zFdKu&1GZxj1;BX>q6kQVMU((}v4}FD3KmfTw8bK-fZv0%8_uOF+y6!wHB*U^W4<3~VPL zR)O;b#5$1T2(by|Jwj{)RgMt5K-(k4J}~?UaR|&lLSTXIM+iJ{{s?gdB)tzihC0C^ zc?@(Md0MXf7@Pv2NW3maF>zEL1Cb*o7oZpfqeAI(R2~O0BP-;($>1V@ zkRTWh%9=xx6m%B(MXsA1E(K@}g3+PeI4Vg&?8sfYZVEUUKpG4KpdN5Yo&a4yo|f-E z30DCq2E!Oou^g2rKs-nZ`EE+M79b=T#)Qh?kR$`~BMs!cso;iy)?gSjs+^;e3?z(n zm+z*An*&HgV5}$j3>hciO#`9M<5~P4Ut=Nn*rz90f7a6C}%>>T|D2BrLQTm*fR3Ip_LZSOKya*5y3KK+Gb4pT!jFDdyx|!is zfYwl$Fv^Xyk{V=&+*Rmifj0t3!(gJQ2b_{LAUN{0VmB+i9iSM7du8oaH|9sc@M!iD z#!{}}aSJTtkfoyoVa?vi-s!fO_3@XB;kIDhoh?btUQIK(&7GHSKH9P}Z&KOywdftP zDR$8z?-u2^cV4>te3X@0NM(1^qW8(Bz@tN&7n?VBEZlrVWn~gm*&$l=x3ej>(IIV% z@-37e|DPigrWf|l(dZ{leJ3Iu3-3Qgqo45fFCrq?pZrH?^b4MT0niaL;vb;VFL?Sl z6XhO_1^-Vp`Uy|p(dZ`vB_Dwv{Sldd>c1H3-@?Dp=qCWxOjtJk8Jd22eo@p9;TIbH z1fW*ebC!RGrk|cah5iAJege?q{_)?S>8IxxMg4|GKLKd#T;1Pzep1wLX!MJfu%^C$ zhNfSh9~AW;X!J|K>CpTcntpk{Vbx!t(Jxja_|g6untply27rFCQlQjef$@65UUl`iE%r3!d8Rf6&xFMWbKvR6F>NNK^j@H2O(X zEoTTxYz>Myadn)y9!}f@CvJrkcf^U`!-@Oi#6xi65jgP}oOlXOJRK*VhZ8TuiPz%9 zTXEuDIB_&id;}*xjT2wSiErb?u{d#3e-;elHBbtJ$N(B*5LrM^4B`zi0fWc|R$&nN zzyS=R5V(&)6a!hXh*F>w7Eul~#3Cwzo>;_NU;-9V1FXU#>VN}SL<4Xii)aF};1Df9 zDI5X?G{hm^0X=bu_rL@kq7zt!Lv#ZNaEK4UeH`K=kOhzE14`i$pMi#WL_g3Ij~E0d z;1R>XDm-EoIDkit1NZTWuRs<8VhSilK+FIQ35YqMCjqelOdueZfK>#<3UGjcSOe}8 z5F0?2Bg7U^>Iks|G(1A=0X>fp2f&0Q1O`}jgunp@jt~Uk{t@UHl1vVA3{DETcppZB zqT%p320DS{mV=PMsR35^VWg<@9DBz=Cy`2WkmGPhK>B?c8A_1Dg9Jo_w2_05!p{Mw z@53li*E#k`KmcT@9OMN2BH&^Wj1mRm@Hh@)LT1WA$lwA1s~{LP>K4b|aS$uAO%6g1 z7YC#V!DvxV93G^g^T=5_2nGBaU^)m!kMiT#BL#6F$>bp?;fjEZ!LU=P#~dCfKwL;} zc?cz39bgp_(TF%0rJ391q!K~>tHn^k9ctteFs~1NLUJ$l+mG_ILH^;DF91M-u;)~43 zT?V9T*H&HXtE+3h8jZ~gT*t@!{X5qym-G4whtIE`DQu{p>hZuA_4K%So8B5*fsVLp z5r}tZYfTzA8L^H&wSH9&B30}CSc(R-`mu?T7!{F#fX(UIwmkxs|KXjg>aoTQ6|EPm zf%xUyRgGch;Oo~XzwC`@Ot?tauFD2^#p3nwUcQLhI#cKH<-h_nQ$lH@8kV=>=nI+` z>qzjZuOHdnlUnh^Z7gqg(c9L3x?R&STt6|fFxe{NhK-{492sK=VjZ>*Z|?-SqsJQi zWfnZ@19Q4scm3SGYlqeWUIv1G;*??BIQ>Fh1^um0eX6<88}5OPHFshZ~kh zyVzy_vg)BU|2h)`&9t$Es*_lsFX~mxc-QJyfy2AijnC_bMhofvwCGu;33m-5Sr(@p z@O!H-W^Q}>-FNL>>_Y4><>D4cTqg!Zqznx!rrGKUU0bcI6OY;(39~?;RBfY8t(n=; zyv6R?^zL2XKsVe9nzy}ic6Qp;-0y7~HhZJ7I<1xL?G-|eXI)viuh-!LcA)%dWBWFC zWV332`NvlIX7qOfdMw9|T}b_Jcjo`*@%itMqO~PW+#9|EXrEXw+BleeVO&i6j)!9O zGVbkd9%t!<^5@kF=Yq%<;DUw>+FJt?YNbz3sZEb&TxAcg$Eej}@-q^5zwWQ6d>*oV zN7)lrII(q$!j?Musgr~oc%o4gDDD+}e7&Ik|7=+TmHN$);mxfHjVs zTM-^9BK=+=UJ-LwLgKk?&T)N>FBraV%gUXL=5eNYG2rM5=(r`*Lgpw&ZYtbyTx$Vd z+nn?g>~NAmufE5~uI5PLLeCV?JkIY2Oi7qMa=4i|ETp-q@O1{& z(*w=;I=fe#gf2hJ*{oi!5&Br3gm3lQN$-W*4Bk{$eYY^I)0g8I-JgekHVX zt%oLYfTpIXwJ|5P+f8BEfO%=a#^bhwseBDJbJL`ND#~Z!osh^9dBFM5)0f_N`3mMJ zj>=Qtye=oJrY@i2&^O=}uJoqsiINRzv9;JeQ}vqAg zCMdoq&j5`-P_+yj*-6R6eyPSUg4GPQ-_ylRJ39q31&QgBKssc=8<`l zzSAp7Bjg8n`Dn@B`HgCR!MNuGnuq z&R#Wqp6hYz9&r<<-aLg}MT^Y2*hFvZxLoD;xB=zc-pE~YmbtK!~hTu+choHgTH3ZiL*NwZoyF0;M zf(3VXcMlNUg1bAsJ2@wFXU;h@XYT#{@?rnhUcFXzRdsbY)&10e+btW$B&b*KqpTQM zGk&~^zW&IEL(0&B85bj@j5+-5W5&k$R(kK5NqFAlZW@-E+{`pnE}X;Bnw-Hdx>{=* zjeFjaIcSknwRBCgCum$gJRV^XbdM8A&>g>a^I zc$y~cJTEJgH2Y8u8SN+EFsgH~Pk}sf$}#q-Ynw)A)*FNyM(W(+Rkb}E$0D14WV?j{ z;K8f|5mv|E^Umr%s_H-^tq;I^!wGS1>{dS!L;9$(TvNiBVMr7vZSDaVS0IGd@& zvQ)D?tJHmm?UI!&u%|+Mqh?|eluQ(M5%{_01+)?!w7-xl*{$>o?$s0EE+jOjsaAMG zW8uMO4({_g7}RkZEQe01w3%XiqIC92KS0Gp!$`caf*oH=(Amn*>j45w!Lx#D?QQyGX;_nkdlP^xHL?&G~ivsSA; zc!RtGgS>Kr6*5GHg7ew&eoqz!Ir;JZ++~TpD`O6>nB#R+a`-(@bA9{sS(QX9=ZfQA z*~!#=*s%SODt`lzrrx9D#Y=i=6fdZIc5h88U#hiBeBL&nZeMvhxL&^UT;$`9%!Ea( zSXs%-^zgc{Bd_*wb_8rM!Z~f0_=yr|o){cMWxC2HANAR7hwTc}7fT(VS4F!d)6eZK zzxKTL{El@DlpN@!Y(^@lA6r<(@3B*|<4=0Nc4?f?Ke5VTwr~BqX}iS@Skwfc_Dn0U zlQ~V|e=%*Ko|ANu)jFBler~tles*N`vNi7~wEV1m4_1#0@7}`T%u~&O_;jR;oyM(E z9=F4@k{AD^dL(j8tolb4I7B&2S<-oJz zqzy{G1VR%13m!j%9nTHJ8f|8VpLkuG=!^Bh+J?E&7SHY2M)R~v`7;$q*wfKgaWfa5 z&N|PSma->Dkg+&l->NU=YTn%X=W<`Yrqolsz-qOC#1t7`|M5~NinkgC@?K5HVNVQN z5ODFWEj;%vsI5GFICLgv&!Zj@vj#85w=(zpP3-~i*KO$EckMEDk*$n$J1u)+?0x0I z^02$EZsdD*znS`aeS<%ARiNs;wi(55KCtJ6e?06d$DO_dRFEq{mBmfJFnAVa7+$;C;=1=Z@Cvi{t#w_+r$}ra*y*0R^RYYb z_uS2$dx+hRk-;h1Manq0(lGS&>U#_s9`U$?qGNujYzU~a$vq37aJL7l3 z_<>o!L;5XAR`^Pvb1?W74d)nx6?m zKI?xq@bev#W_8qpO#W%?IALl3&$r*)|H%N$M@VARUhp>g&G1`g^ZlQ1zq$Y2K+Ts< zV$)ghH~GB*d~^Jt-2W2zCq(!y0^q-b;=kv^|3HjyI{{zR{*fR5!}h?xz`#v{_(T5^ z6aP~@9|-W@Ua{!Ap#fhy>&iV5~B8hH6TCzOU!?xwSPx+NAEHHf${$DwD#|aZe4xk ze3D;`_urzme}{G_g9ZFzy#F4p{d=@K&`swjcEjFyFy_(sUG}E6VSUAnz1LOH8rcui z@n9^a@4M=4X~X)4iTa?cuQhTQmhHhY8-P?I5Y2-2 z@Oi61BjbYVk_jAw2j_uQq7%)&>H&DGz$2%E>aq$PLI!VvRN@oOg7tWMs~{uezS0#I zID`%+1Fa+@ng#F4@K!-XPJN}TC~ycHYyetGOEe47)8?&$g^UZPYann4ADjnT$x1W} z*|XxUf`^<6rt2VZh#0&DTFFZ^3)S=NtwMy13$7a=aEKgC_Nr2tXcoGMz(<7?ITc(t zUf>WV*x*&AG|?Wc89pj3$f=OJGXjS=!3JQJ7DTfMJ#9WJ9LTs( zx?2K=c)@vKl@3I+h&?MlDm=)kP`XzFhXlb}V3i(3vq(M9J}LspxX`)~?+%HA$-pZE zh-Q&{2z*t9kW-;`(cc{s2OEG_Mi9-u?&0%Q5ktm>(ItC#NE)06UKvj`i_!z|RgpqY zh0$ewcSs(*1zwp>G>h8f>8tVq85dSp_}$^#U^0lxJfc~&o(x|V1>{s%UB!2YRKW%i zm8C?p=sj(|Dk{jhaJmNX4rzk(AS!E#W-)qJd{s1%Q{i+S-W}2fZ$VVH63t@vJo~C> zBjdvB2E03D2quH9>?NAT>LKt`(VuXV4h-LEBXl$$65hN^z3r2J7%lRRvYo?(I3&D! z>XQck`*zzV-5iTSA9Z6v^&M{2YDph213mL%=Gf<8+OBN~pz)Ns^XM|woo1KV+a1@Q zN@VD0i(ArD_;ln^QI^x_(T=3_Mk~B@=U8=43(+cU$dXj619oTJ9rUgTt|3HI;MusT z8Ezo6$-66=J}cT8R7)4L!fp0ybO!=WMpNKy1oMLwaGSyT1Fo0)V|Q$`c$x;Ai>=le zPa}Ou>@b-uotw+{d;o=1(#lN8p20Y8tNF%dnXDAO)A8OGN$V0ic{E0gHrgJsLsLOt7L#zCQx5rHK}J8#TQlLf9(axE9~3&xmF0_4SgQ8YBfkSUpnonR$OqzA(y{Nlow!mvCHs z0A&_`Ibc__dcOlopgG5X&tvzE=-DB5VT3)>i2lX?vlqZJ>YCq6!&RMsX{+Vp{+!j- z#kD^9(eq*J@Oir1abr)xS!FnEtkrsT&dzYO^mF>r$rSF~MeE%Z5}gjK z*RAwH@2$%o;dOy5ZOh%H$SKm8sX+t%I>z0iHT8`H!*!Fx$n7EDiW*edxgoZDBOYK7 zs%vM!uUR$l%e*zC2B=5AOXdt4(3OmR=7JncMWK zTH(8MnVwz_Pg;<}m`17l94Ccs4@_Dw%_lsqW!o#qox3jc8keb-%$Y$jQ4OghFOEId zALSUg&?!(WfYglr)h*Ksa^&>M`@5%+cA{f6UQqRTphH zIFLP7%dPJ`BDR|4I}`*1^-)lmd=8b4QvDzr`cwd_9i&?AG3Ix~XrZOA2n-KrZ8CF| zoDzwz+MiZ(7Z5jy-^~j^1s0kysAq8uDuF#&@I5n6)cOjk;^n>d1A79)xUXL)eB$kD z4`uZi%0aBs%_@f(EO%|ytqe^4!teo+nX5|38TIvjsB$ZDKSSu9Xljj7a{k<+ka&I~ zLD?xK--K;4%^IzmIXeSM9xD8F@Q1rzu0c4DZ#(exD(d8vKDRKv3fD{$aAN&pmwbYh zT{wVNq)W!9fU-Ny6NCqs8ee9y729XBWWuR4z?S2;DAb|RjXa$OyxqCA{ZTz= z#9L~ghtF3f=w>y9)7a+IUyzR*&JZciNC$~(QCdpF%Z+8PmZv!;$xM(Q!5E7WI8;ju zyI?e87Rb`);q$HEX)k3bTZ&7l8WN^D#my4vHiXwv>fku@_Mpx%jdaY}3*32U zY)YV~mNWy4V5abHOPWltNg;>Hw-Pw(CiH^hv;w_vD|ei&q0_~jyv^G+K02H`JD1cl zTG;CSAnSLWexb~_zRVS4nsS|9Q+gv!j(w~W@hzcl`bRV;ZNQT)2 zA6}ItXe%lgn)zc6kZQvzsSobsu0XhgAtQwFzO916x+Wv0QA4qgpZ|`H*Z@*&EFmx- zFJSB~DWpts3M#?c}@fYll) zFWK!tWMmjm5>*5UNvoyG-rQk%-7+#r`RXEL9{R2bgl!s~aW43s=0qv%_Y}+vRnv1DClRT2@{o6B$-5oOG`S| z+#yt^uGJoD5PGOR^_4$7vTagi)0(-!^466RI6EaAM$OJB7=f)R;D{XJWO3F4SSe_?-LafxM))z;7h=ONPa6#n73FaJ|*5?)I-fxHccG+~|o zbmT`yhw*UTsu{f@v+_8=Ttgx#H-|AvHZthm73%S-ww!&xkWIGYfG=E zLX0;E=-M$~jTQ5kv!|jtzb^~ES4&FYPw|56_9Q8}DXORzmjG2i2mn`=ZLMFQXM*3D zB*Hf3-@Jw*bE-PSAEa&Ph9WQs+~WJf_)KT)`VJek7{$QgvFn6r_$CVjEx+-U;&lrf zbkn?G2Bv=Lessr4sJ?!l*gf=il>&B_#_|q3PcccZe#EfU9$q+=+XJFphO5*;#ycs1 zaX7>v)9CDb>Z1oxkig0y0*>)=B@VFCE+S(MFQ!G!Vx_BBs~1zda;5u*P3wo|DRMJ&I0>oX576u;e` zz}_8Tu3)Vw(R)F~tp1r+TE2@*2f;AX%e&!JJozqeeT?%?Z9SjJ<4a7fQf_$EZEfp<{f2co(%g-Xo%=Xl=LP;eaz z%s}G;1J!(%3bvKp;T8l2-)5_S5?@*Kk~dr+$Lr)}UcFzCK5H*E*Z9(ryES`fq)R z>IbhO5fXjg*E`zWAp(+4vU=wVN8Beixb1J%q8QwpgcFX4#E;H`Urqz=kklX3O~-;t zzltKh=%lt!vkW^%+pxcU54fYCeU>R6i&fgsb|aKoc-64eOd|2Ev|~5;m0wSkY-z`r zJn!k%i;vt+H;_h}U0?P#B|bbf70rT3=M^1F%ZL}bFfdU40Tc)eBp;(Ww1o&r^$(A)io%{)YuO|en zSqL4X;ZT&q9W;Z4&$zx!k@7LbL&%-ppxg*rdpQTRKJ}eJGc zBc#x!4AV9e(TF-BY-G|$$OVI0$Z>_kUEz@v3EI3DT<}J0L7m}djl>Rvbs7^;V`yU- z{*=Tx^Z;&RG|gJfBGqY88a6a%=A?>j~6k^98~1P z3lq<|AsuuRvp`sCvxvMYhrdqOVkS{#MX%2ssV8_Y$|*+8f1t9~ORDuPQ$N)J%2X4G zGFH43A74JaHYzRat;({7Wr_88jhKK=|Anr|#h}hM9rsg~!JOG!GQ#6eR)HbZ^E0HBHNosxlYhI zBn$e_T0*q2Oso8<6^b;*50J7AB|-JoUZ6j22cZfvS%VNDARrijbvyWzNeBzW&-+2T zrdmn973P-9w6=7`h%6>-1g8jI{5q{-Xk|{j=n*LO~Cs{{ij@?%` zg_(~2jurkzU3yxLEW(>A%Z6U2^TRT}_uRglHx^JzZ;CWiO)yoSr%~BI5&Dp#o&s;(%NZ#8--`L*Rl zw=fHni$?Su@%NXuy$aciUcyXo+Yd6Y&cwe~y5ZEL7EtIE-MO!FZ5GM|&R`2u zgnPYk#TJhB$Q1;KILH{}N??ZB7bWP;6s@3oyzoW{)<@D?=Qb6 z(2_wngB0n#sH8wzejq=&2&=C1gk7k_EPC#|F2#Cy&c@zH50hnjp89OliS^vKXl_jQ zO;K1t*_Cs)2q|1mJrj$7ej_@-=t6Y)E2RT#zKUZSip@2bLqx7h%;{VquDg2J9Hm1Q zmR;C7FNbnCV%E0`Z=+R^_%vwi?*KoXZhINMJd@j^nUFyfDd9~QOaCf*2_#{5hCD|n z8VwBAAdSo?IJUF*ZYvSy$_lJLY6$dwygm$PulbYqd0afCo- zFqy1T!Xd232MU@EBx+j*(eOkaU~m zLPmrOfypMboW=$8bx}t^NRTkgmcpR`W2QRfF>pTaq6d{BZtA4bmgg_Mfa!)L3(+v* z#thKMK#LMfk-kQNApjFQO+tVQ2i$4i8$mVDV!m3h>6%K zmVj@+x!5DDsXy+17te_Zi*RiZ2nvOG#G{(2zZuYVC&D88(Ci#4rfrn#L^Dq?|v3#l%L3u(yFEl5)#|W)P6l=?PjoTwT?Xs z_*qpzvX+}cLo3s?B-S52ecCkHzpp_39F{Z8uMoZVYn;t%oYZ!_U=!f}lf{7jj`GuI z`rP_VmH#WT#c;#o)7rJ^^ZdhaPP4-~fZh^d)T1@@M=r1juW=q~=dkMMz{AN{+)#86-DO-B>h5WG~Wy|L_(qDD>=k7SMB!A_l z+}6&4*DLF|iVFgJ9bV(pwtjhtmYcM-8~V0Un!jOr0+ztW|F~3Qesw78nOQlEWqB8# zgE`w!+L$Sox&CMA*01$`mQG|-HP=(#O5V`wOO1{Ct1;xj#&rHn z`_-eU?bj)5*D1-FHvd!h&meS-@5#R^5dToC9Jy#__zW8|{o^1zA#==A-E1kzk29K*5iNX{TLiSi#q7~E$wKV1~@ou+%&z{<9~I*QhBTG5}-4$ zBkhkKOl{}9-wyHFjm4*|Ybrs8mZ@I@??>4S#URR}cE1`7+kQ>;!3{l|vjz5tYb{ci z!VTT?NbyIaoiqBc!~W;44v03%0#*xYSu#X+keH8rcn}~D95fr( zrhJ^IRKLnM+n)o-1CLoc2Ia5ezzmF9zlJ@o8TfGq_)rva&YNw|0hoVA{dOJrW7Lnc zGUcvz4!&O5xFI%LMajI}*DnWNhem9>4dzoUU_XV z8Hv57X)MA=lVwvvhTA~R=;8alqLE^HD1s`BE2%e|EF|v;c=qjyirYL8XDwP0?jzup zESABG?+amvJ|D>D*YcsaX0WemvX9urF_sHZ<^ORulrLi)N0rCn6FzSMy{mZFZ--_ z4~KIY4yGR>F@t@zI8%&$Tdp`4do;;{8CA5e3xg@e{OCTg7$m5ufq1d)Phk>6M_ld7wkVXVm(S>w-e>zJvK@u- zmnre{w!!aX8eN&P%H-uXtxuX=*)DCUxI24jB;TJg4A1nw043_7pwqbDCclFR0iiVe zKg>heSbxkzN|#ja7L0Lv&mQj3&@eq%^;-0;7B!(@D#f9rRZh@I78O7y1?#x)E@@%H zL!MI#zbfnyR}u;gKXfmLc#OF{^=lm{ZgGY?4IA6Zw{mcoD|L-()~Hw#SQe42-j5fU z8YF_J3Ri@(txI3IH55PFJd__KzJ0E9gYV9bA<(XFF61L0yp}AjYj%U5>pZ4e2u!{F z^zaq{C4O)6_+imv^N0GYTDfWB&JLmJfp%lzanvc^k{8At|Er zyBNUpu}$N$qE-0?^X2BylWn|zB`WRIa2t|RGlK^WOdHN5RVejY_grdG{PX?ebIZrl zWq_4m&;(rUB%7DPhUk<1>3!Gb*}{57{al!V>#=z&m5sBP{7f$X1j3o$405>|arBJXVh(nvQ47vjcNx1MW+ zqjM%6Qu0bFW?5G=sm7x{&JCq%p3zxbdAmsQ=4*^~kJB27DzgFQ?+(vtfOBbw*wQ;H zUc;KvF&+P6MaP1fAq1DEn zc2jiNl5Fq{_*QP)c4-(5UO#7ZDHn2qzL4pTbnbW!|8Rb|al~~kS?P8DQZZhR;FPrD z>{xdwXY>!W#(#gNfxL z??Al-=j)UOK?8>n?ED~rh6W+h`OzDV6hfj?t^mS5oe^7znUpW3ZaNrNA*k7#Ovjz0Ok$3-&*!{utn^tV^4<*>YuOa(W#r2-_K zVE?ajuDxDBCD`AKyZ)x~`X7vcQ*CYU2Kg%u*Wc;9a{mW0*SgpLN#ph30-OJn^6I&p z&wq0Ni$v>xM&Is$Na9~h?f$!Z>_0SOZ#CWiMOF3>GP8ds0sE8g^Fjmri|v0V^ZHW{ z_I$_e53;bo(}^`9%=bvT)>#PpGvn^P{GV+98+hNEY?sb|#Q*-gBCG#i^cmzI(7u0A zfB!|d_8&sFNvb~os%!gq6l9U)GvAT^QDOEsJn+98!9Wx-@^^IM-?0)=D$_Y$x_gkz21+ev?* zh~g;iq@h|dz4S1fiMeNz8@FUGk1+zC;>7KwFw>nL}_`1ZEiTCiu>5hzb4DfP&xp-jFvP62!wwhRRjs-a%7}}ik zt$T6It2YF*%}4a?T(m~qH~zI{3IhNJqm_T28w;&M;&t3(Mdq+wPOtqFw(2X|^W$wOrqhuFRaR@Ohh z&ew|H!^t#9ac&QH60bwoJ~4S>^>T4&U*FKVsSoQe=*Pb)ia)HdOv`k8-D>{WZ@rmM z9o;s(Y0w06cO1n&V}V9tQz12_t^(n-TB9mOkT__A)IUUwDB~#EBAFg;oNhtVIDE~$ zlv`b(X^dWe?7-cS6VRxcuN5?(-a_0Wef;@|X{6nEy7wD>Vm!T^L1jz3Y&M&?r*FNP zD}Hkr5FI@-yT9gAqq$BMSb4@Msc*-A zCuZ$+H2RkOYPQukiak03Ia0B$@7yUSKASp)tp0Hr&11N*S_A53` zt%y3GDBKBX$GA@jEhEYCiP0n6ae{->o!F!tJzH+4=ha9Fw_+HD1q4XPxh3;9rZ@HW zXjR1wlzV7=sqH@bD|F83+t6(Kf7DtuM)$4 z0|WQPcYT;F%3x9R(mk}1|(vP_#HcbLZbuKQ(^6Xq)Zj_yT)9o`eIn{@|jEEC;ff}|- zpz+B<%ePGH&(s8r#)^Yf7VZ?Y3_Y103LO$>U8}0Z=Yjt82@C_u=4G~@K#nsYM&w86 z3tg(^K#dz${h42XM{#E>C>B`9su8cc7R5Sup%Bc0B9iapeic$aDVClE@L1?B}#v4hW=kjuPkzq@t zM#2sEGth8HT7{lJt9FKQn!Rnh<<#2|al=5)Sa@}K>hoagvV!e|Kev~D+26hNp<`GU zz7%oOu~|E0yhC(0Mok?{vRyZd#{1b-pqK4~HV8rDrB<4cV%~GaHG(k>9GWY2p->Xy zh;_~Pw(-x0>L2}-u%~1h#BMW1?}2a3Qadmnn?@6)IJ(^cmm<+2HDiPP^nQ+d;4zPJ}$8r&fZ(X>267=4CrxfiA`eA2F ziE=4ox@$9lnUmYI$0pwc@b!w5@+LXoLnMIDvU~|@%4l0NvTK}O+!#Q8SI@&QE+7ktnO4!CA+VxFVMOl=zju$=bLvsg``B&Ai zINx$~rW>FXrOM3K**pS!={(>ZskVh~LhLhX_ffiZ7NLV!p`kFkbkNr)1UX8G4^O-~ zOmR29KyD29auf;HG)ajH2b*Nt@b*YVx>yEp;siUoM;0R=o#LGw6~xxPmMMaMP}+88 zEF?NyY;=?p-i6&QOVk;4xl_s*uNLw&}Ax$;4 z0e<36_d66JF1RvoepO)hldvpI`0>f;VNKS2#4_Khc>n<{WfES-JZUDz@LRP`B=a$B zx?`j9fg;d93s3E%Qfd|$FObFqYIqP2bS=PBe^M#62#gowq2xMBoWr&}n2AuAUxq*W zW?wurIuSWqBMY-l7gwsxZYk}+T(jd*uLj)c!Vmma+o9QF-1__`?D+t1^-@cb_+|Wh zoMaLwsFB$N{QCSA>?@0;8CN5g3Y}{+?c*;4%d>C<_4#Yqip14wr{Pqe8ofF<>j0+> ztPta0P?BeSjTAygrW_;pSXR(eN)rVvrD0ecfz3cMK3rgsRObpD(fl;;3h{kbL10rt zUx_-)hK#A-tz2kn7LKSs9|Q-nK!y*AdTQAH1Tc=HZD%ece|y=z|rqC$?g!48~^^8nkC~qe#3#UAf{4#|9wr zuBS2wpnW`xNW{ExopJ<9YFtP+PZ`nQ}Jmcm9f^4hN>Ue zKRDwJwEe{z1_Rv6APSKYOgoZ8c&|-IHmEQ7d?@NMXuNl<^8}*fn+xy#j+_{GNxe5- z(Aa&IELw;mE>v#?79vN2Z%H_O_xyv2NZ_L6;hn8f6L`*zeX`3FviNaxx8R)auW9}H z*$(48Z)mkA7imP~tBKS%Z*G(v0lgEd6sr_caV zvtwo^b;^xSG40@uPh%kcnoWhD_Vum2c+ z3Kb&;I-rXcl4pkfRs!njd;^!AQ7C+y7amNKR7o+TOgM<*m;G~CUw^(#p9HE&Y=vxS>*-!dh$^?%H7HDzJ0Z{Q2z<@l{@BUldAfSY{8hfl;$J* zir)OiIfxQ3J<|Pn68`EdnPggNCt8hEZHP_AOqe&MolnY1m(~OqZ*EaW{62iR%i_rW z&`YX$o(ic%gn39P8oe$R($J)K3MwmWmeF-SH)MJEzP-*Y{JIQI zoCEZEPaP@E&pVJ5%+PQ5Y2Rx)wt)@u=sdr131bW&MjC1O;PCW~MRHUA3A($S$ss^W zlXX-9Z}IGM4O4ArHAvcx6NVGP0yp61?|`7q?;d-Jp`77eZad<8PnW7a(@kbBia=9UTRFu4QF|NtoM~5 zV;Aw$HLQUL$NrToq9L-!n904N?VN(|$zJ+!XSU3~@F(&no6Q)nu97Ytd%}Hu5c^hE zrc_7oa(j)(tGhOLjmRqOv}GjRzkPvw}2tr@P|^ zqg;rHz$Dfn9B(K(>soQQSMB}2`tpeB zf*p*l^2Vdv|EsJII@x~Vp|m*xs5(<9U$aNRfbPRRax;X&cdv9>lxOVvXg`yCA%PYA z!?G}j2f=%;IPMf0j<<-Hk|M6lXWH%?;Z>P7_b4$7)Dk`4JejaBmu#-VG)DY=2b->^ z4mJP%J1O#xbE@3OMe#i7lv=}xZHj{*P$)LBdUBKz`1(@v$b|n?d?iPPx8_oQ~cP< z_yK&f3r>v(16a1A z%~m3SfGCOm)wJ)=u*rX5^vTP18*IoOs}ITz8L4gPj}~G+sd)YXL)*mEZ9c<$@(Sn_ z=;3&9jq^DtGB4u8uSk?U$ZoX@noo{%9fs%6JCSNoBM>@!Umc+$E!OQvQDXRHj;yp2 z+oQ}S#p1|=tI%YRjA#yTsov^?awH@|uY$vJr{wN36$(aDCoo&@|vYkywh&ou=BUbZnypV0gi&OP2dhT*^I zhysDNozl3)wNrxOa9I)zc5)`6j$YY z9zov79x1#j(2g}2>c^8WLNrx3%X5Q6{M=Coz*^)jc?}^|w#jnLe{htq0NVO~+`POI zt+*&sDV&$`Q`Ny2@O{0v9oTZL%0fEo(78|=LYu577o`ce6tW@8MpD?8fW$`C{UTp| zOj7SIq?m!DuaQt?J6wAFh}2Ti@lh&_L0?4upfLbM_<3KvM{OsZZoMhZCqP*Z*52^1 zo|1acgJ;1$m7U7Pg@{1TxxJY$3#O5sOdy4kQC~LA>~Bq$R-Aq zXn}G9J~TuuE(syo-N6jx}+-Yrcu!@#C_JbFLIbZo`5!+ zFWXX9drzdkepO@3vEO$9@gdBxO7?Dh=;>@*MsMe`Mh{FQkCjFD`XV5U+i(^C)(X$= zsOEKbaz7HS8ek3EC9Qtmwq@W;h+~w9%W}zxN3*@|MN<>WnuI3@{7(0+H*pOTPax>LW$pZ5P(2 zV|ca?ALH`DIJJn~7wkLz(9FuMKK z+^SQxPP?BALc+P5b2GC7+0|QB7TIdroSxdHF*_*v%Gt8L>`Q6Wl8uJMjmBM>ZdKQXzdbUfH8X1zj1(*+A_SXfq^X!%tt;NSanKNp#bb@{ht}6;_N~ z1naO0JDqs*JxWAt^1p-5@oQjH(9^^Rk5$5EGkS7r(+%FcXJc`A2|j-E)+>T)93w*9 zsKkvgZ@{{&D-%ngymLnDi0V6s$egDp&xTP?taB|YNf4aF=hV5XDn-z%@+c&TIANxK zFL3PBqWwfBz+%{r+ZCXIx-$N-ETLX?!RX59Y8$p_8g8mSbjUmRn(RZjRy{{66yU>t z8VFr_MPWK49Vao0jL78u9+$MIc}NKy$NCpWa4kKF9rJ=vg)fYbuuNb4@~}1UXo{KY z2L`@g&xjAj&BU+{2UCIao(#RAW2JxFItn?JB5{-zS%|huF*us-DL6(>BYr;57pJp{ zLuVJ(*wAFj<+r$>N%v18AC=u)9}T!bs{wfT_#g=ejs^k^4Gkg?An^f6>HqfkC$|!L%x&|zv9>jB?=Ro>s9+AMlvQpb5dw?gH*vx1ai zsB_8W%&}4eX2mAUcUi+TmYJ4D$UllveCP<*4!K&5@bc_wvxENByhCAyZpn_~Jgka! z^t^3TxuS1X9{YOX-L_{Xd~4SFc+PTLCM`SQ62S4G`yk0b0FI<(S!H>-Ix`;<%iGop z7$<1Sz(kxKr08y2jl==)W3_sLf^*BqkQcrTbsopWbI(c73T7IOJquDlCwjrz~ zvUoXnhE-Ru(I-D@c)ZaTZ|r?BZN5#v>b1W-nlLH2B_neUV2_O|P~Rjg9dElEA8a~Y ziHORjZ+mfDLbJLdC6~&7O@HQ!LFmxjI$&t{@j%(CnO){szg_2Heq=jJh|Kdsns(*# zd9Iwx(pF!1t+_UMR;MN@C~ES1Bwg7UJ^k290;L?K+gXaJn}>@%LF<`v&)Gtay17^L zgu_X3eK=qA;kc)I&C}6iBtN{D8$Rtm`5iN0Wy`#E9<{}7#s7KQvb|0yD(r4a9Xm+6 z&pqV{`^fO}MmPSk6{ej`=+n1hM{Z@&ok7qCy`Yhkz>(Cz5iNprG|$JRfaN5J=_E|i zfJ}z(dzJ(8)6tDxlXtRM7v}8S$u=ezqKW*T0~gEDJAEeGQ8MGe49sRm`Vpw38Ck4z zTlVjHHYq!zlf{I5+cTCU)SF2Zq7?i-%zWyWvd|PzBD_y9{T9bZEcR}=(2I)G0)S*iO>F)dv z%-lQ9+!^ov&HeMcJ`Z?2Z1#4qv+`YQua`Re{5s9eb1Ka_X3W|eXUL)q`i>Hd!fwGR-Z`n&ix@aUEt~Ip4NEb|4CzoNb@(J2{wi!gWk# z(9NIgk*&!bGrrB)FIOFz+d9@|?wQ-#)@7cY+q%{*i#GnwJgnH6mm2{>4LTnz@N%DaZv;p* z=pCI!o=Tm|vhEY1Hh+3`O|Tz=WN^yecPztAE71?}lXgx&q5)jv-md6a*2=TuJqtJ+s)(0PdHEg-H{ZH*ap z5#oOf$Zb{IWCmS^bln1~Th(@%L02KLcYv-|wL@mmb%^L4V4_v+lo@mr;(rHNZB@Hu z2Hl2q-2qNo)oz(VcOj4vtdJyP5S_?gcu?qy5CCK_KUI(r1S=wm7-T1d7akn?7zBU- zOh*;u4Z(^*A_mnd?S+Sgt_TTW0JBd8wL!4rlZZignt9=&qK`oWc)?^-L6DHFq$FZ6 zouOWMnCOa70BJ!WVvrCdD=mo_Y-h0-9uE2#6yS{@@KKOABr7Y47+fdN3-1ZKA~e8E z5Qq}g2Fc1zA_m{N?S)5#J_ZeN69l3KK|-+#k%%F5B75VJp)0}wLIr^sK|)Zh5+q`X zoebW1ROn+cfD}O>R**Lo>uVA*q)usXJUVnmSU|BL@NrNZ6stOk*rQG}Z#*XSF<3y8 zAP_eQ5}H+qL=3qz)EkctT@eld6a?Z22|=?OlZc^o7JK7yp^w1<<^+LHgS??xtx3dC zJAvMKFVGd?0o#H=!k{*2R%a41w9ajBJbv^sc)+zFkT?huhSi%y480TC2TvGX5dnZK z1SAa-f?*9N5yJqF2;hmKk0AgEgn;Bh-Y~3DBx0DI(mr^S=!%E{1|cA2P#X+uB8eDQ zrnn@yt-5KhGr+}`A1dtX2(gq2^g8QvvVEzdoJQegYB)}UX zAbpTGENeN57)~e92TucC@e#mG2*?=J2FqGcB8JuU_PuStL!lU)%UuKiJoLxa~{t- zzWf^BH70>MV%mh3jd9JgN#iLa+N>_2kdSyxjeetojNFFBLmiYyv(HeObx0kR&fBEw z2#)}FIErORS2TXw9~xZu)Eglk{LajMBrK%4LBXj!{6$mhBK+NObzO>rQmVLC~FHxB&W zeD?(PP$$bUop*%&+feQuANa)K(6e(}pGAfRoU^`nr%Dm##Fwk`+xt`x&c0w736V=% z_qRqWU=IhM;KjG8ZtXxSmy15EW)4|Wd!)*iq6G78d!sB>@CoU^VUJRiga12yy;ECX zM83_2du&R_T&37x7FcS7ye$eUfnetr5b;k&&7pQfvj z71wf330PB zy@vO?8WPS36op()eP8Jf39>;5OH#Xy!&#%s(a1M4H`h{W10vul(UJ`=_w=pewNbLn zHA1}d_-WI@-0?y)(Kkz+u9L4+nn8w#@AnsMzL()@AI6j$vDOT%Qia4OGVkt@e^mZ} zyx$^MHdt~ocX4^k{QYz$eYkcwxBf=|wCZ+H_V#);0!#*1(&}``m6&%Hy>Tg5Inmm< z&~apgW40)Lxq8_5wt?ScQM##XXXx5fGZdFH#%*4ft8o@|a&XI=onR?P-*7{G51ylD zdj}<>LqHrD{S4tC2V)&hX3UP3Hm0^l`ucXZ%x`V<&1{(;{_*g@57Yg>!y?LMp;^&I zTwB^__`f$|BZwYQ!jj}>2rWaav^4Y3pO)$~)9jzr36WvKt{NFG3~i%LVh_T{J@F$% z)HyLuN^_Qb0TIJSSx;~6X;y?e%Gfk4NN%i zl^YdZ*~CRd^>P)ys4wu=NY%~>*o;J^f?5_{MOyHL5yNTaJu1KOp(IFJ!lRlk?g?c@ zJl(#Tj7++0?|L@5dJ?DSQ(|9>p1E`+N-^q;X3QZE?&gPnOb3jd-8NV@K7U_&T-^82 z*@N^-A_tM$SB zI82eObHpBqz}nZcymTsql+&Vq?QcHg5UGamtn#rV0ayCT$tO2G zq)DA6!3|9y7YCHL`*8WCVYozC99Dwb27|=WDE|#gYFZ)=cQU8;+{0>*Lyg+VcCbu7 z{(YHnJ}mh7RilK!c7`l^mI8=%r(zUG$Q-g$jBI%4+YdR{*(Vb7JSxW9##IsYU)(DYO*1+d~%L7e?sYwJbtH=X^U#% zIwE;2zkUu^c`*67N`)f+F*54JiHUvD`LmayxIha_xHi{HocU$GZ=O?q8fDfA$Cy!@ z#5g7<6sT!yaIg+)o}b`!HzPa(AbLi(uqUK97&EMC?6X-55vl~`)5)C46MPt2HDI@* zDI=p^M4ebHR~oX{_A>Iu!j({a@~_NZ(k7lxbQF+b!DMRWZIX>2JgAi{Ym~(SScKrz z@+VmAPmPj;-ThL<4?gNtZqckA*{CfUX#C+tQx&d=4diss`Sz<%bwR^b9MjY-gr&x3~x-20;RJJ?X#0W+x$F* zQ9eN~ELfnqbms}12%_314LJn|dpOKw(F9|!Wxyu$hrtC0$y0}tqz>*8&nauXluRuS zDH0}6wa-ctUkQgFzh_gpXwyI{=WD>{BeFFGcqM*Irsj#}ilc&obQVG*CUehDkj`pV zN$ij2sF1=cEU#yWE0g0gH3oB3}nWS62Ho8N-cWa-M-Ff!G z5)AzN66Abnm;O%){|hDL{80(p?ju9MFOdP|Au_;?qQ3d!1i@@Q`!Sf1lJ=>koS@f- zPVelU#YM}z<>5WD%>+azsWYcwJ3dq^q>y7;%iFcu9aoZU zg6}oR@~V#$e?#q?=$Iv9kt|A-Qa(moO$`kpt3eq(zQ`#aG7z`bBYal=!+~6 zGiZPqhecW8F#J1G7srDVjuOp>5=GQ=V!kurcCH{dRx}PKAz@x$ewkx=98J4Xrjl17 z5@uG7K{QvFBPaJHT+PA3H3j>(;Cgm8d*|SY)Z$Fq$7EB+WuE^8fK~FXKy^3}-aXr) zqw6%7H=eGqQmVdyC&iUBA=(16B9Zo;g)UiX46Ed41*t@mOm!==y6pzj$VFt%6xQVC zow)5CG0wnRkvp9pYrBBmEOlt>iw>wYNz6T`0{PhBel(Cm(9Q_s`oRZHENBLTw|vvV zRRtWR2)*s%?6k^6a7k{oTw76s8`QQ4mS{K8sx=Kp!yfXBSt`myK?@1BlI6% zx2wl@@Z3ueetY!&qfifWnC!8Q^JF#c``$}{gjZDh`z-DxjxWa zB3XYwR+^6z?V_g&fb&#kI%F3#Lf4P231oHH4iZ1O=nlAN7X8a=xCX=iAcV&+#N zgILZC%49K8qvM3}vNE|jnh>m5u(4cJUtiz@P}NKlUx^zT5Fj$C7Mb?8;ui|&a`DU- zG*y~TY|91Tc7%5~Mh#vOriFlS@8W^x0#+ z&+p_g>2G6pAe!A#M6oI8?At~yyBC`b<*Ip~Xl=8KteVM4a#6x+Eay~c$?(@&+6jS4 zGA{*DXlpyQFVt3exIj5_eXTY`q7iUpwnXNoRZMu|7kDprg^jGx@uPoPPflt60(0vty zlm@P1Rz6<8V-z)x@aXpHnR^n}sE+$k#WZV< z6YG#~3mpSa?8kg!2jgHo=7udWw!XQJ`Ph@jq3_F&=+EHrIk<}#58 zJj$UBZ`y&?Fi8kxxAxA%4L2s4UoY#)fks?OwC_f-W zl@_qc2TNaIRih$9JjCY=^NlmD6Q+M{;&%Lva8gC;tn@-Eu=Ncw7ThDxaNSFw_4b3( zK6=U^rd@UA)_3~-aoC!hl~>5a!@U)l+bC3Enb-b(on`+GlP!rJxc3mEXKtb^&E`ay zC3H|vHSRscjaLDmMDaPsw5(U_o*)Knu%yijx?IJhuO{cw0GR3$F zBfhg~vriocsGHgKeHD{aE9bL2CwBNqmu*F;wD;vZ4|xvK?v!MwpPDXHB6`BtZ3*R6FYzbp#$^;}kxbI9lyw zCk$!S2Of>c(co-W=kPGkg)QSKb%a162||cbW@00tW1}wFP#&l9+N&ACx~n$zgkr&H zI1{DK0`I5-Ov%8BV{d2jEf&Gr4y95!P1M&cih_Qv8<~bmx}xlPoqHS<_X6W>JD2^u z#M~3-*T3SpRrfgVJ1~y>>P@LJ4AfPc?!hpD?`Ey+8{OO(iV4l9SNMe5i3Z%s9NN4O zC6A=_a=?Fy%~5&p7jP?mGfP$0nM0)$$v4Ip@qUbXe+|8*9EKRD2b;9;Eyw zevm{PHR4d#tfy#@otuF%+VH9Eq{DMG02Ac`v>s zD_YW7-d_`c8eKSo>HVs7eTkjIQg1MJr9Q4;oF=MT$(!2LDf$+$R zE*3A<>r}GteD(Yx_{=0GOy38e|Dv_R_8a>1dy~|BEt2Gdk*QjMhCaH3#w9>ezB&8! zap!L)xucAtC-U7jn>&XC(nlkyVUjUWw>rH{M-zAmje6f&Ir*iv!UWT(0~|p8wY3s@ z-&(1@Z>=y^Fi5C8v{qOo)NQTwQ=tkha6EOA^EN1VLwV`Pmj@nEg}JElv-z8{T4fwF z8a#U9{ki3P?`@*4QpZrRRIy!jj)!sjZFKmsbY+Un6XxCfT!zxS3!x1xlK-N!!to=h z{Xcd3<9Pc|o4>z>)UYpu_h2^sK93y6YFYy{B59RFf_D`(E(g(PsW}dlmX#cqg)|aK z0498R&D{m}p@So;b`vIU!dH@KTFkJbsi7ebk<2}>?5Q2UO`In3f^cXn2Slr$l_T4f zaxOw+^C^BF&6O^f$?JqPrJoiSYtEpo+r83US_~jymbPZ`UGbe3w{{yoCgzce8LN_W zLBZZ4rhjLF>57{WK&DwJP@Ear5Tp6!TY=pRST%slksbr>JO>p5p6c;FzQQvT#?H;6 z+-B3L!!UlzvD+)F(oT$KKL^IT=aavfUY}iv=qy;z^#6X|$MJ)({)g23$%7O>)wCbV zyWh8jh2C@Qi2D7ZB^-&v>$G3T-nfVwlkki)8ZnhPbS-ie2EoKQNyw2v_CzODNWJ)w z{0}W*-9Kpw;}BNJM4KfhvuCKWNK9B+DaSw+?A`mV8bXTQuqK*c{gwvUZ*8%F{T8_a z$Dx;dMEQkbs6?16b!qvCXyjVS;7zP-nRHPKBN8*wz1w22WoP*eR;T>GuTHGLC0F;r z-(QztPdUr8|Fr}=2bW+D|180J6wA`kz@WiSK*-KLXb^3PYx_`wfukUl9=qb_IZ2Ar zgx3n66?!;?L@Jj=tfuWJBR$y1t-8%lYgCObpA~X9iC&^6vzXPkxUY-RMz$%TA7Xa%yso~x1PD9izrob5PBuV2G@4481p%FM{BX*>R^ ze@C;|X;7yj5YwSR$vfRCa{{vqhVUEU-*HC0ve3=~h(5vz7WT8%*XKu62-bPcJ?3|zo+UQ7{fhoYj*6|U=` z9t=itQ7Gr?Lq+Ha!4req>9~0ett!&`5}3a6bO9qtlI) z=a={JvoBhWr)TTV;3>A-kz};iifqYjoJo*O)t_{OSM!D*y1@;l^}TAf;sV z{rrCI2E$$q%HP0NPS48rEtD$TI>~`MNd$0)M!18&c7vmxdTjl(LVrR2BEZOB&s-AT zyS4MRzHo3gfcSv?so!^lC5}~T75|C+_2yH@2HUL)p_tQV#vTDKX0K^yTqZjTB3WEu zPl~J#K)*b_{Y)Gd{ay?I3*_$?>YIO$o*Iu|7ksrdvy2e>1;Zb19lqt7RYV?)Lb^(M zQEj1Gn5kEB(r3SEf0y$x*3l&YnGTca1{k(Yu{*A|<%agzASY;UEiqa;;0>7yZHO=a zpkMeyNB!`Zj(TM(9S^vpe#<-NIpvJklo@CiFJ5q~1DPEuxo?a~gY)VHTv4r^E>R;p zErC`L6#Ff`i^ZDj>EJ+yuUSJozMq;DCXiuSzufp!(!2SUTMfUlbzDN zSTj7`|0*J1Qj`LTLaq+s*Mcg-nJ@j{k9GW13x7<2|4IwJ7_7lf5JJigu7xx&xO-oC zdvjHJV_B21l#G?P{ozHqg=&`2s2RbuY!hMHs_)e4vt-rdLM168Euc(l=3H=j>^VZ@ zNs!QLJh{RSa*7XKwKPuFXiNn{ZP5fDxFj99pNp|0+Zoj02s{hA(>Y>!9>xQ*6{Pbl z1~);X9XXUgO5zNlf!-~hu2Zc}u+}C)OLrPZbZ3pn#iRRVsXL!@^zm>TN*~hcGuXzy z4;`2Gt+c(Iah|9TaJF%Rlg%62|77Q$e%PMpabZXMLEIUVQ&-Jz&hw$Lhc&ghJO-=b z&wH6a72(=M?fy)y_p@R{B@Avx486Low}eTl{+8>3tmQs{!TiuMRxl=3`{ zhxQ#pjhHK1*FpRxpk#vsN@kWX8n`DMM>|mVSg}9?@I|4EMP2bIpL##>k#m7@ z`zDg_#I^Y~w*9~{xHbiclM--UZ|C+9PHg5!TK|1r|5FM6fGPhlNt$-#50y#Nk|Q3e zkaIstdb%+Eey4gHmeP&SA~HxshXyr32x8g+A^fVCm-i@*HY* zL+3~gBUdvCEw>=8Z_o>u*0dz~B=!@^8=A8LAZMnXI!%7XmNv~IBuk0F{27LY?y-)cx1cUxdQASvq)M>TH z_hB(%b3)f%m=8XNkt5x}m8MiMaJ&`9-BmBHAum?%z>_#sJ>KBUMjK)xH`_=mjnD8jNw}eAC73*5 ziBaw0x_jttWE}GN{FkUD+i#PWzw0D9ASf#p|Bf^-@$ZT&#ePDJ6X=aXEtYDM~d(eLbgf{87s6nl0G@v6_G~H-3L% zE9u-3S+Ag@xFfh!HE@x0u8|4PNZ{5ZRrN1=J1BiQRDl3;Q%o)!+4np7J$Ik9X6d|5 zsl|M`=JDG6*?Sa#(g=ikNi3)2DwG3)?Uq*`cQ>+!b28!xJ;GATF~f9uIK2Y2^roK> z7tfl;5-LO)L)Js`_^kC%HDu^^3JxoDa=0L=C@h;5HL#`_93pg^<}4J1Y+K5%aWDt^ zwY8_0^(Om7$hgK;4%yBHirO_noBlpJK#+v2ydF z9Bxk4QvCM(i9eXJPES!$lSi3{RAGBc$GZU0Pa>m{lr-HnfeP*o;nz^z^^J=Yde5FR zZE8bPiAw<73f5LsF*&}i->}Eck-fUJ<8|0p$xu<2N|{Q^M0Tx}>hSl8k^M{DMvZBh zqX|IEvC5G1NnmBct;<1eTPjjJJN^^MQctBmWzYw-yBU3?Dq3kK@zc9;COXsg}ifPQ-*%o?K5m zTltK9!AZU*y-KZq?bv z4}8j;=-2(YQ-G8tR(+W8y_uhPD4{S}q`BqfCSmyAoK4vD`G?;-Ts8_p1(Kc=Z@CcURat?=&}UkyF9?#~Hk0gY!|N=H_;MkXrSILW z7H1V<*~>ajgQ8w=E4#dJ3cEOCmDfLdWs@l-8#7+#p0*o)WH)`(xsM!G?%PWvfCYV$ zT;-4=MF zapqmXa`BW&_KUaQJ;k7RCbUHF7GVUkgi0E2UEPR`LDKlA!#yC{m=~0)hLxZSftG$T z1%2|O3fkJjs;(YYV+!RbZ{k!2P2Ak#3>0$v?2EOqx_eZor3=jtCl%C}I*O{I=@?5T zNlgZ!ImTo+tEOLsX>38LR>qA_1Gbd-xdnMd`BKp~FFu*CU^i_~IA zWqA~A_XKmBmtwPe4U(x)+>oqIR@9)xI!JP?UffJZ%vn*h8U(o}5H%#$z7i1q$;4p` zqB;*N`ki48G)k_WB<6L>_(x8(@=%u|d&g%|X}IL~5H$6DD^<0yFO3vSH`-laxu z6jMYzr|;VaQ=Z4^$q+1^isw~E^L{O+7*m(1s2ugadMIJgF#OQU0&Paha?#YQM}J85*cR*(tABFA)+EQPV>H$ z+p2@+y@#Qw%Ion}5h`P?h{qUt$uM(FLE?rB6^15{Mbn>S?BowiM}*|5W4lX;l=uYM zwGqNwL^0KU|G+Q`>#id50gj+f^aIgztB~WdNa)(WjHlMpT#&?-WKjIepUt88SMR?` z6^0nXa6;-;dWE8?@fbkTyX*=Yr~U!8Y*ita~XhWXXUeCBiF9DDt606b_t;m{N-e$-_jGAB7Kg}6GW<- zKTAnyI0kwxk}tW#xOsUAkSx7~ar5(vz}QEG;urmFSWa`BDyKulvJMlufMAgtKgz6P#s&sUTs&%jqE*&*!tAdP;@EG%T5eZrL zDitKn`(C4ZeICEic)8-B(D>o<-cn2ZV6Czk?ThG-BFjV3DVyQswHv9F!V9l@;d!|e z^NG<9Nrm}^dwUQrV93(RRw~WJUlS)cx|tCym5%CZ$XX8176;YcjLuoE+(d^L;7?2Q zCCxjTQ1Zo;)7)GvcdrCIO2n|J&ojZ%7ah-{(tC|nP9r6oSK#W`6cLH$WMlH$&n+l2 z0{xIxnBTiMAK?PXP-%43D`g(TPTV{RzPXEfvt7q^4~hH&ZVo0^kxUz#n}*^bJD0M) z^Ey!oizMI&lPFWS0sEjeT@?}cIX|~K5jS9TjPo%O=^ptCbXv+K9w{-|3b~(KXrvs; zA+0dKY5awntB37+E(oBpKo+8u{5VQe0aty6;DA_N=x=?U0$r&e= z2D6HTG{$`xOh|F``}#y&A|lT)4k6`a8Q({uVH{!z^NaOTqhDZ?rmO4YR7aSGjFIm)3j^N(KW@X<_rN#MYHy!(7cuIR!3Jx!d|>-p}}hv5k`}jIMo;-6)Sd+ zMSHIhF1)DoaYTCq5iSr&iOE;6g52Im4sWxC)P$Rl#4p%n%c_EZM|A|`5we?Lr;#M8 zdHIquTUMo)iEOj_Ir$j19HWK&2(_Ga;JTQB=y)$eCUE++PelWXXU zp>_oH*xO)Rj=z!gnk|+z8VR`cV24hUE$!P*!G2sqC;r{h`ElZ`Ye6B4l^>46NA?b> zFVxC!de+m{l*h+|P11`Lr!6#(&X27h`z;3U!&9D*&!FF;w-XDU>mqpiEX$EztMhkq z1cqeuys=uCsE{gt&)+1e)JWL!cC3%HzQf-^u>|*IH0x{KrvgXVXD%A!jnXmrdlhtp zjZjCWUQGkbV{czBygYYD@Rau{bH;5W7Ct9O@I+pgW4WgF6Br2mu%_i~w{6E@{H|2Vz;NSzLd5-A3C29A{e4j359bX7 za9NX5OR-M|-&B7VoMF38Kmi|_VYDRN{9D&wZh)BTlh+3?OaKG_ys10d@)_y15Mqmg z6%7^Kas&OlBcrP1o#KKBOWdb>!XEV|QhGL% zp`IqDMl^8?uX|ZOQW_w{h6vl|^uyV0pJP+}?(9@jzIuo2LTr7aomG4TP4By4DHEh#rjn$U}FaEMby5K+WP_jl)H7Y-H~4T(Sru?dbvxkO5{VX($nr0yKjC9y|IM*?#iUs_UN z>9cL14r-R_;@zJr7<>_Iif;$i0s-LrAi3AnH7gqN-)m|-T;IybU3-EafQxFLWDYDK zBQkFa{CfdOP$hm4b0KxvZROsUnKt5i%75qQ}$8Bf-kc1(&o3@ zkoegr=QSklz;P@o?BpoVFB!g6YJj1mOYF~G| zX~HfqF3r=0EqU`->-x`yT_U1x9O*Z>5rfDXm(jN+cIANE}15v-9 zwCGq~zvYd~;_Sf1rY2YO^A_S3S5^;e-CXU1>-Qg((%kl{F`J&p`R|o@syi*J#;F>f z#PzHS(MQ!= zXF|}Ot+UKQeoSF0uOU_eQ9@~9>ESkvzu!5|S}uQQXNmMGQ-AU$+F6ab6~);h5GVCa>eZ#xX`zR4+NtFV)z(UJ%At*4j9+ zxqYdXY(!#4#%|{6vC~+zWI@QY+?5!(7d5Z9<1w`8Bq>FdLUQGLk+yfcTHEuTrE4i4u(>dsG#lWnNO6pLsvIsTor*7&bR5Q;kLSkSDi*!H zW|KMnB6S=M+K+4~s@^g8 zGg`Z%X=OySaTz@*i^`f>`_)Zuz~op=LvayFA&H@6$R19}kgG?JgY_CC&OwpQ1k2o| zhC6;bE7MTRLaDTSa&yP|*VcQ`#Xkl+k{JU60^a#&+e#VwVCBYci&UB zI*-g(!KRe5A&|t^tZ<8A*5w(LUL?W9W`#q9gUOwGJLb6&VGpU$7 zL^MqZ;abUllybP7h>IRXQUtIjkloQeTc6n>CJ3j}?Nh80KwQud8&<(7pU12ir0qYI zeeBdN@reu(PHDdhW^dYJXq|f;rhk#++Ml}!LY50-rM^A$;~S(ZkI&dwQ1B%zwe=b3 ztIOQl>>ADpRzWs&dZ_3T2YfC5vH1>UMN)0lQu?9Xc}feQ8n?b?FNkl@vo1Oe9{U*n z8ud3G-`ui^CSR*hJa#dtFO)KlBd;{rmJlAbe0wUX^-_gf)TXJQ!R!%aLzgHQ?rshu z_OQnEvk5%o;wRKv&jj`wE0xG$_?S&0?aw8lFoX;&EIA13vk%@WDI-0x4cDJ;X$PHii6vv>$zqEbKMyICIo98rzkzy+$2aDX8!?<$I0Hl*# z%~HuWEw1foougfU|juHnIT`KG&u-b zS8;G?sd_r`I3PQnj~6&} z(S(1grhE}}$FqfnX{<^t zbVUQp|3tcw_+wuZB8^WUChdkA4+1_`Sfyg$JTI(s9N<<^TTs{C@7e2@{r-N2!bmmA zyxK)QJHk))9xFH(Q$(3d)YiV~LY-oA4z;p*^w?{`3JO-<#LXl>^ieoMP(7#U?U*&D zTUgM?@tVh0<6o-yX&Sjha*Ky^=wu)U*qg>HXNRRHLPRB(G(R-;wIFhSt&Hu>YpB2z zt&cAhR}pMSe-elAIAh2dZ4s_*qlTy}vBxJPav( zAlA2c<`kpY`6&BqJ@m=)q1<{+=E5!;LQnx+i&mP z8Yf(fUnC3!#6H-y{hybu{_+G(wW^G5_H*>+y|Rot=0&`e3cfg*?miWLD#b0J?8Jf| zy4YjEVv1R7kDIE_{9vkN-vnQjl6;SnU1}pn{^nSJ>(8NB8jLcNHqy|lh%yq@nn{c4 zpw^zeHrPT1r7uX#gIH^8`4g5Q%$poqt$jaBxDH)lFAS z49R;MH%WL3pYC}8t9Q+_stn+}#+}hOwF$;$IGi)fC^(CzoQk|7mhaZ7+Uw>Uv=|kj z=GflCbxe;oIh5_b43_t5MdUvmX>PN1dDDS(3i~ycN54sz!ky$XT+zEL&^a!ju-jQA zHBFz>5;4%o@||A7OFy*dSj|#u({Q-YF`n~fJI{qcsd44oNP&~}_v}^7exX9E*_Fg3 zE4k`@p}0#ipy+RKxc+bQjVUm%sL_E?V@|nMa}*!F80y2>U2Y5WoX|aftXlY- z?pcLVHB@cd3$zZ*!0%Kfa53&TF(zJ&G*r5@4e3MG3Lr_K!s@Yx ztX$7V0EnT5H-FLQa>jnBgyfRM(DVx3cq$t1g+gS6>xI1-Y%kLHgzur6Lux(v znn(Md;w4*7LQ*`Q%#99}#^bULqEIC`p+qPk1R{?crT~NFldX83=bz@Djc_bEI#eMY z3<~SqL?64n^PfJ%a#r(CYy5=9Hi~l`2)9x%WaMjI#@(`*8T%cnE=RMe-nWe1f1Av9Yi?P< zE^x)_tMxMMN^pIYG7_*ia+#1{{mQcKT1gk~DD7gs#XMVRZ2SFZJ0ljI^gO>w*cWYr z{_nA<=cdM=lYY5^6nd}bSP6wEvM-wqTD%c{njv%eqvz4Z=G9JgBIuktC9@ml&$g3Sk zUETB|2^5|TOa0U;O`ff^9vJX)s3qX^Fa zTK8>D*|A6q;>7nfxjmb-Jrm?BkCfUGa-<%c8G~XG0}$-`XQ3#ECzUVBsj~!h@o8UX zA4x;GAE7X=vPKMGNx;_d^=uj2rMg`8&x2qVY-}jC`rxF5P01)T_(x?hC+Xgj)H3*1 zs0d>qv)ZrqaNM}zadnvpja6~yc_Y6%vzm1>1K!+xKqk8ScC<--@BaX$*6Q_O|L24D zGynG&y|jnv$Sy4{+b0qg?yappMIQp^gBmfFZ(xx$pT=WMVfLm$CPqAC(7<6uP!l|L z@wh30)5tm`$Z+V8e~%Xtn=(|q+Yj6<=D)XL#-9?pnD%k(s{|?Gq8wbu zL2WIyW67p~B(?uVmH^T5s~GFc(-p%P0vF%A?wT%G6K}XZrN>0uXz+#?(|DP1#*Qj0 zFK%=%$J5hg^ERg34p|cUPH@+Tr)w)O?BY-12SU=s3>(x!htn=Q4*DcJE`XvvE6X}g z=_*ub!*Ux=4JYQr9@=rRPO{6=DbafGk}}e3|VGUVMGr+L9hh zRoT8hJ6TITaWdRD-IZ*7r#T~y>o~R=7Xn(T#8|;i8Xg9jFfSknbUU0jAypnP@AUE5 z-;d|Hslh>yY+A074dMHJSDe1GkkR`dqRv~oFvpCDhX;R9cpzo)dv2QCkm z;eNY;HTY&bE@up2z#@?h{nkduSJB-1MuQiUd$=2)*^V}xS=m&Q1kzh%#h9PKZM?j5 zuIionz=PPZ=t?!K>R|URq@a zi);7BrZi-czdALG_h{^Gu;RL)CuDXtys)ZBOJ*7|Rjz+O>FRdlI+4+S z{dTKmA!tof0{M+3zp8gf3FN3hmBx*i)jeu^+wE&RG9y4uzgV2VI2Kj^ZaPCI zvHX)wFnbXsu4O3kP{N%75%;Ft_ouR+cf8NeS}msgi--e#g8FZo5S$84-=jKfSe|uB646Rf7lT@4u$j~+N0uMq-spYK_xcmcBixYj8 z-0T8pLP!rl1;|n^uf8mOHwlOFy*iZ%)`yHZH`bCc+#=>mMINvzyN* z=>vI50&)!V6CY3U4HSn`i4NFzk~`l)^;>>(p=6DT4!c6@dfDI%xtcH`bakC1FJ@1^9?;eq@&?vC;Oek?^u8pgKt5e;wJoo<5oJ1uD4Z${po>Ng(Yj{L4`>5GZuiVJJqs&ir=I^u-g`$i)h+$w^xo@%(2F1)lz<>j znhH{+3DQK6B8XB#Cj!z{ic%B-1pxu+5JV)QBOsvCL3)#30-=QRJJHAIdfWSbpZEUr zTkEc+lgZ3Ev-iwr_MA;}P9|r{DkWk!_0;g)Cyu72<+2^F9dFMwb`U*5U6xE%_i2GRvz8BL&H7J}6Jg4>U45mBh+&4g$7ppF7<~q!m2HJvOk?^^{ z<^9sB3BUjR)J2QsLTf=E(MyZopNlxzNa2h&1z(+b+t#u zSn`R4M#W&Xjfv=qU7qteYtk9gYcN^%lUxE}`ur^xp=lgA8x>=&(VjAyDxVuT>aVYs zt%8UT4W7Puwp>lk;}v+$8zMfDVQxcm4W>8Fp|6uv zH3aDl@0vgaIODz4JSB%&3`=!=CZj~kq8NgL%{`)pNfHZf!C39@6*Ql>Xuj1?Y@AJ< zLT{2tuW8chXB_?RouxAJ70*(Y7_>H5$g`dP_b0S2G&Yz=PfIpNL{okpbsy*KPtWC>MTZVy-nX~LKIq9KBjq5~1C z5)OU&#fcoH!Ue)!WAjS2iuD6;y2vW5LL;v|9*&ak>(ek4Mcw89G?3LL-$Xeoy!7%- z>{39ozv56|S=f~XThR-pr&D|`#E7)Fct1`oTt3$U^Q!r<_Ml*Mpp&&p*5%C58(0m` zo2N#l(o7@}^(2S($JtM*pmR*F6k%7+5v4WS5?;B&RJBDZ7k1@FX+yXhlea;i=8lq1 z9j9x3i-K3FGmEPOo9pv;qGGj1Obq3~<;QTda~&RD=cY~54P;&DwV~7vT2-CXzK_eT zR1zDs3_Ysivu8bcwcB?ZKRE6ZrM24j(lq2s52+e4Y8D+fcG>me`+n{FhLkxCP||#XuVF$e;p4T=Qf)w{Ln(c-hUL?X0bG*rq&Pu+Z9C_gasr8VSA*rU7@r2QJbIzrqN*YaH&R6zrRwAu& z^|t(Pt|3KC7FZBB^-{>a!L|e?M1-;N3H5X9|86bJdJaGE5Oa=QlJD#wv=#y9Rcv&0( z55;MopU$vEU0^5s&6ygWr6GGd%^{vwUd=i!*O=wY>5avFXieoWCzp6WUHx7jy!xQv z%fQS>lGk*_Rs*G=?4UfVYlN;two_q{xS`d+L%+vuydof!x`r2_<4O*-k9_$n4I-%M zKa@VoqKSF`2I-hz9kx1jp1viDPxYPI!@D8;5VaN$Mbq$X0d;w8^T!g}-wGIis=n5e~up$GBzM?(Kz(okOX!ZT#KU#P!r{ zvB8vzameFDN`bdIyf0w&Uf~`+pFpo_!>;g$HN(icT+iL&A2I+Jk~lR}oZ=%YhJWyj zilGY-NK6dQPX`33m^;^s?mo5T`SPHSzVneYE*q-3La6}(%UYbUhrUzEO^!n_<=9!r zVe@r^ms-fAsiO47voaSe3Bxq_!-#MR0an~EA9))7ObCC`Fb(cBwJf$U4TdR6*%@2g zQV^+KMGz^8_*vo3FF7qgvkCbAUKvKq*aV(SU$oW9gW1JP8H=UAZ#47>5zrofEWvv5g@Nq2KN%Dk zJDhCQ`q69Q8l{qMLyvB-2(6F(%my}rpV<)qTQ>Z2)UE&m2?F|7F0BoC11jn*TS=8a z2Lkh9_Y$tojrd=C)K||lH8MwV>2Y~0o4M78DdE%#>5S-ay~C5j=8l~|QUU}CR~D!k zev}2mmKi-TjQ>y;!Za93E(thmq>MzXH5!zCn=_w!lSl<^9gk0wE(9+VZb~E&sf%FM z9zyRFjn?=ut6%$gkGpfcX(R5HaxIMk6#vL3kD+mJ>n&|f z_I3mUAIuH2OC%7@2A9{2xD?P(l){<*k#XRdzb9N?wamqB96p@v1lldmtqt`FkM614 zqJ_2FyRx5`$=RacFcxTCkNcSicewf=_VCIDj^BMM=HkgDc4TDC2i66(tOT_zPC$U2 zP2fje&>{ib&XNCF7kaO=2^Hcx+PCvOxc2QdbZvFf*QimTn(&^S8 zBaw?F#9CDQ^{j!FCw@qxOb{F}^!amPmpRruBw(ul4V|2E<-x-ts>J(J7dKXF>TyXB z{jI}%O1OsoS#}4@hNL5!=4g{PLuTf!yf$Wt^h?3*Sv6zYNL3EI20U)27!l5 z?G4*bX-Go^ZXjaS&3BaGpubfhSSe?k8Uq~(IhPKry!1stB;oowQ4YZ#9&)k({)EEU zzn6sbVFI>+G*nR79WoA`PZks!Z^2}1m~ZAGk5^-mm%2z`|8oi9%i!3_UmJxwThTBg z6z$UIhE_n}uASAS7YVt#pod@W1w#*vM^d(!c1rBz&kK6`0aG zC%9s|2jgJH)i<3k!v4o|0w2 zWt~|3=U&ap*l}TsdDn+(eCp*5UQ@guLwC2R2c@SFXpXkIS1;5Mg}PECLOKK+9-(fd~V-VNOQ(}yu^5Jr^w*xx7WeUbkGZY zKGHa=pL*VxjMS4_olWUO{*Cf4D2qT(Ddw7k4@pepTv~2!?kVjO}kCialSATwTrwXnuet@bIs?;;{9xEn_2Qm5UM>4!+Jq06!7})sQcNi1bJupJf5x=ONHbJr`9Jf z`SVpj{5iq9E^juBR=0*NE3gfWx1AyPldfbwdOIffPP2xX4+Ku{5pysIoV={@TtM>2 z4<6JAb zHW6;%uoiw@v}vkLw28NniZD&izRJY+=%XQ`wj-KP^O6;AyDnT)f?E3VN5Nnmok-Ik zHlOIRQRpko3GeH5iFXXffmdaDSLBI(Ap=kcbWkI`m)YahY; zkfzW}Y>rYBZ){Ho*YQ1Wi9!y6ox6QO_`c*nlY)H8a~K=bRkb^k++b!5uc8O zm{HTTD~yl_+$oIsf9f+ZoE^E5_0c7~RIh6U&!qmRK|=#Ws&tVUUQ;IZ$QZjQ=9as+ zHKotPG^OpCHHRu06-+?8qEDM&gBJpg1QYb^E9yU?iLq4FWil_K)61F_P8F76T8Y0Y zd_G#nt3Wv7njsbE52H;*%q<&3%q{W8Oq*{qK0C*GgA>>ii=)uIWcStNV}YMX)k_eV zF9X>|>Y53+Bcu7ixktxw5bO9;5i5QHDD(sW_4EXoHP15$;l_IXHL3nI=O5l0Dg4+M z`Q}B$@PVsP(^T}q6J|Dw8g35aXU{F3t~C4vgy{z$*9$qNA23~wPf74bLP$Dz7i26sbmfLrbt?4mK?CJTf_ z*n+P!KO2OCAB5rxb3*UeP3guMyIBLnhoxD7TamC< zTd}a#+bpu>KAZ}yI3hwZOoEF^KbFa*lDB`<99*`{X(WK@7pQHRXl}Of-u~H(?Aayl zfAko)NWi&h(!a^0FKox(<^O4tLr^FNyfA_D1b6vP%TwvUdHmqqLB#18+UI(J}Mwb1%ozm$yhOYdsgY@56kG?{I!z>n4tB8h+%{O;79OvvB(m ze|0UeR{=aOYzlwXzr(C7FOWIl_m?E!4zuXI!2jvRWb0|k<%}(pb|a*SUx%5X{(iyi zX`7_;bA^d{fxnc)pb|9f04i5NrP5qsIjF=uE$INy{6ksr{q&9eth|RgF&S5rMf^L= zL4h+Ucnb=?;sn=0!M*&fl218-4ia;so~Lb|>Fjq{c9_jyMaraXCDlCrQ{@b*upO2o zX7gW>GJ|U+Y$~sB*gU(vJJ`eZwY20@74|kct@DuC{K%2FN#xlTQP0(5_9yD>n4}sQ zw>$h|6Yiv$)Srh0yBbCiqc<0FC`ipScNIewT8z;6FMw3_$l zI01@1KLkjp%??&c>wUgfQJYV`bFu6tf%j&TBt1TCwLCUMeg~B*pz@=r4VB+qEFY+x zO_EFmm5F9Zr>zcFeNfpUYNHD(ML^|Tl4LokOa{*cl{TRAlc>!@P$>f{=aVGAg39OM zndlBycTm|4jtMFiK;=S`|NByey)AQLXfYGVnMzE z9z{LN3W^d|AK`-wKDx)6nY+nb6=plE?j)^~DaTGu$0{!#+N^{NZDn78pM8G#j$@|{ zjvOC5o4&)!i2m>uuC%KSep@#)tL*@NW_n7+np^kOhv!|VDzp?bcTqV5q}*-23&epN zB@VIcjp$lo;q6BB-2O&vrV$|<^#Wz@JJMd!o^0fM-%MFwsP4iEc684D;M-w#%rL7I z63^oe(l^Nk&9pM=Su=LFHo97<%j@a5B*jtVE|t~ANBf!Kk;Ak3rM|k9gr3+FAQdag zRG!OniuPGS73OF}_4Yg98TL?q+(4gerw@4XJfk3M>SSo` z^5976yE^8+n%k@ujw2Pf_X}=LgfFbaw!atL11D5F(ddbe>p(6}n!y$d#Ixku-ttpQ z_MlPAFXCu*Om?4aX1PB+{O(A5vcV-}I z+6v<$(2c(3AF-0RznnM>^qOOKji#1+8gIhPF%#$0F;_glHpWd&OB-$VWuld>$C__Z z=H|k`nkyjn7e3{f=}()zZ*=nwt{r0*saSAtrB}8OaXUVzb&ZwsiMbl{(3ncj%)&`G z?ZA7JDR*&CG`vTbi4tCT3v+@TOYC>xULfvFd6=I!#TUC6IVCK<&8l^_i+^r;trblIcwaQ}PcGX1aNmlQJ`iDln!*@UIowcIA8s`j`;(({2 zzO_~l-!+h%5lcARt2w^c*6zAzhS}3vPkDt_AY(=5RfI?5@6}VK7|Gd33r}WK}!?q84LFr zGVzFXwQXwJTbKLO0d2{;=I;FJOkKO~GZa#ZEltDss&7V~$?*HboaLMak=|E+kd8Hh z^>VZJBYTBUmbUwXGKG=XtdvU{ZTCubZ^!0@3_|Co^}`zacL#lHV&$GROg3E&*=%_< z(N!Y)NOZGvJ*`z@{NY#kBWz}p`AOuxuZ=5#PT!m{_e%Zu55TXvYdBz%$3MC!!EF8J z+_>@ZM!+YI|MD$MGCzKSrtX`S=ZGmm>n8SyiHfyugc`v(dda00&BHrR#BlM$_-QS~ zGdqoNSGoOdQSygn$Ita(h+b=fc^-juH2>MM%mvFM%)(5;7Dwx-LnX2}BUnD)v~kC+ z@>=nFNg@BlLC=DVLmJVtW@*g8l=n`+yP{(lx}-2g_&5kl7ja2Yslh+MD(GTj*Pw-4 z0G3XfWR&*HDa*W`Z3O<;EZ}Zq@2{*>ut5!+P9AR{s=L?1qG|h2XH#tmu}) z@r&^-Z}0S?eGw(c%J$+L4+>47y)JW5MMS#w6pA$-iUJ;lvfAb-<#Da#SDo)0b%oWFMw*4_&!ZjRK#I=6S{6i$ND0((M~b8RJS8FM`M5=(j}0=`rnY4%)}^bg*e zLeJ@2d#PYNjg-z|D^VM5Un%oaGq>cL?z}?x%Y_NNtBJ`@x%@)%>)Mjylj=_HcQ)?! z)j)07NvH}6?A4s^2di4q{{n+YE_PPvzg2~(fGFDqvWMTXdcEA zKAEnsl$R2v`4mgYptS_xXS@{JAP**Z$s_aOiOA^6pvcf(y>%I#nG=>2!?efvW5fA)_SKW1jlWziK+{fEBN|3)zKz?m`k zN-FdQ$UHf@6Y{rre~SMt6Y5NvE1rt59r?i=-(>pj-Jjxr%|tjua@|r9H%9(o_Bly@ zd-tdKUoj!hq`91_Fx!zonW^eWzrFiY{Lf6dGi$C@D(uGZO?^`)C?EU_@jo2s($p7` z|4;3=yWBS#|CRi22d*|$lJ;`x2K-Yi;DEzorGF*^bK2iLmURgIN^+0Op z#!^#XWInACckaIyQ1LbVogVCIO!TX{@&Aj_P5HZn|5_(x{;e5w7tLQ}Zte-53nbap zN!$}OJWLb|z678I9@#LoNw&|V5N+u&>-1X1-~37 zx&~j8M+v0cF!V^aFQgD{Kl{wee_*F&L$w%tI!HQKa(=tzB{H>-HT%HM)P`y~);UPJ zSaN=+r5>3&#LADgyJbVQ8k-*^jgXwjv`ivXzp-Xx?O--k>#>VL(n!hq-4;Al>Le@w zp6_xs(mH)^t*M@2*Ha}Q; zKyv<|#TJ#i!kT?#hp?gAja>|u9+#ZQw%kXhZm{wn+qK$I?Z=*mOV3NrAGW+irEark zAKMMsP+?=8;nHi8^G7Z9sMI}H{u8@-8>*w&e7H15a{jnw5|w($ntfu2v7tJNU4%;? zOU|FP5ZoWaqZ7rmBUKf{j}pf#BjLf|HS^scBBCqAvtv~iBaCvxE2H7T;5T2mKLq|B zKfaxisu*!p5ndS!4~C%G?*0%JT_L`moT?aU)GA&X7Y~N8IrRPz9i1qFowlkNd6YPQ z*(n|jQFGS)Att&)0y{HRG0G@6{4xn13~_Vg{ULx(l+eymRg5~S2)_)iG3D6Z1*`=t8F-Ex& zl(3 zbfP47ZK`5yQR0MUw|FpA%~>HsXXy$_>;_fEAW?3FWp{Wm)Xj|{L-KT@q;?CcVw_P$ zgk>-u3{CTN$k2JZLQ=b3RWa_URl>4h9t>?WLFkYwohX?dshSvXlsHjY1P_L;nJ;um zgRYRwj#W*JKgx}$>@g39zWGAv&_y~?ayub4F~O)JqOxQj3`4VB=#Va5A-SELnwU`3 zDp6Sm4~DThG<3*-PL#qq740?W0|fd`9j zRmT}@fgS6sE9p%O(+G7~cukR_lk8KjreW zRu1We`x2x$?7|FFRTtG#!pZv{Bc26N&0quL8r}To^1NZ|{n=lRpoxw)y|mFQ*^{dq zX@yrlSPFHYniwzNq9Ykbz8Gz4UYmf%i#_(88WqxFl7wq43tVHHQXrqnzOtLqByT>x z6+LoC<&!ntgk&#e$(GwGePzpFs+cMytfkX>rJgbKO+%8g3$f-1(LO5BJ>Z+daod&_Wd- z#QUShCmDOFBx+1qzb2!##lHqyb-f&p(2{R?|9wl0Yat#?i2Z=2rV%g7=9s ztM7ts?p8=U5W6m1#G{ySewh`1X3-D1&`t8hkesp9L-Xu>{7$7DNz0kfhEX1+HN*!I z9Asg{r(V6M;u|{Jfsl(W;1!%Tqn2#Se=Gg2^Y!$-jAuE*S!$|@-KD2)J%rbvnw0D> zsSJkeNATgTI33k<1rmN)e{`^t4PURWT|cw7n`;6!z2gQq#5>i*ihZ!UoLVR%{C0r5sL4ahW8o-F z@2s4{x)l4qb+6OdV!ngdmm9MIO@_To<-IOvT`k<+6X=nM7t&fGNoLe~mkK&v3+pe6nM_=N#{2!awWIh8%IxAS1+C1Z8;Wy&dUXOq>Lk&au| zLGIq>H{A)BZTHZ1)E~wt<<^TREG9T@HZ}KKd~X>(=_PiE-13fC{;sr5*FSLS0kPV9tkFgs5!okWA{O_1 z9dn8SR$-i88JCek9q;@jsq8gf_LVyhk7dt{Qd*H^Sa00?>J%>_D^;y=xp&iqbI?2S zR)IKN@LWG8&A3kR-GpyLd=heW4b>A#BhTB+7OpRQ zcIGYviE%DfrmA7-2C+OxqIAUB=&3lQ&?bZ(NOrvu2H;5t zVMn1;J9B&wk-<$Lsr{+jS<9Y0EKO0i6fbKjnzL?{f zrf>d1HiJV^ZGP-+ib^se5tG!l3Gyd~csXQ}S{|gn4cCQ*>m4X;r(RnMhn!|QOr9E> z5g|uv8=E))WR{QhORqR*ETYhs^X7=7t;)xh);?0n8^`S)T` zkT6zbOMsv#S_Z%11;wTnoh4TRi~YF;HQPK3;ieI#Zx(T;mg9qA4LA2ss5^iDoGG^5 zTs?#s53d4j?f&mSnEW@-68-qW$+~oB&(Vv?RVeUbqU`UfsnOrdG#PF`>f}7_@(Pdc zL6l~vT#{xAvv{;ijD*il3AX`X)vTvM>!_iY=2JH-&T-wz_Se3tyH~l7F+HPcCW zrk&}vh4kavvGno7wchEagSEj-pN{Dbcxd`~)6&-3($=keawmQZyZcSu6UxUZ+6k6U zluF>U9dd%jI zX86ro_zDR}Ne3q2s7u(*rhacF%t7!@G8+7RKJ{4t7Q>E@&tQSJp|{crW@BlhE>beq zJ#xn+u&yR>C^wLbOT45caklHt~bJKX%+dB=Cp;mAY(3X7hp%?#HWRKL-&-@=`s zLHDH>vDh6Td%vsez{1Brb6{k~AFpS4@#uEhyDk;0@jf4yAX00j9yj+L?ZMr%HHSf) zJDW&XWUcjOlo$)#CUU^f$7kT|+I$^+ephaAr=Qx#AB8$ZcRj!?pR)|MusSi#vzF|! zVJYmNh9Qu0am%nOt#_7(w}W>tE^N-fZ68x9kjqD$wl3bBTh1fj;W{q6F&2O8%=Gek zEIi)PX5R1lhtvc#=^2mbXQD3!sq|wP9IyuyqjQ0K?^u_`%gxX4G@h$NS_I{rH7TlW z6HEkIo9)PO^$ebQBVA&4xz4xR#yxp{+S&XRdSYI#>foM4$xZLAy#9^jt|4xfKAnxJ z&7K{*4>cd)zE$HYK|yaMgU;mV5g*MREV%>=MFw%8Fo+R+3(jwxl3W#QR<50$alu;R(piW?(kZN1Id8afZF5(72Cem z;zca@%h02(Xn6gb2AFZ3`wO3jNz#YxceJT%uj_`5t@fmjMdXp4klJ#(W~Pt?)ug`g zQJKzLM91}pyhrWmKcAxYrQmYSOeIm5b=g}Zefzor&!ze1V?Bzkjjp<0U)!V4 zK)Bym8BD&X-Wr6Q^rw*2XL=QvFriW>6BtYeV2D%&ai(Nt57!8ItR^8xL2;*MT@|#jg{}n5N^%T~v|KJNng2UnYy31T>qf zvw}`jjK|PCaQf^6zJ!0IJ*v*)mwj=&%UNu}p4vxDbM3mJfadshLov;P<|jg54%#{k zqpv?ZwYAh(o#pk!dBbAXoH4UNH-lJy)ZSmT{8Vt(skL<^b64M8WVoOi<8ILu#k2PJ z@2_6@R=s8<7~x4eATFQ8cRT-uQZ(0u9r#n2qal=vwp4rpQ4i^cwP*1X)HNQ{vGIF6 zy!hba!;7IGi4vF+PV=$x2}OOPYo|X=cbYz*?wlr(26a5U)EHr}(tkuaLl((&wQUs$ zdg)Ui*LxA=@=N^%(Qbnmx9)#JXzRD}bpIpLuuZ2+`yY_F`fW1Z|Ae&JDv7%KO(`Xk-v5M<>GDfGsy|E6``4Lfj}&tmrT&7*Na{+%S>j$M-M`FuQREs)rH3vu>E_ug5ci%= z)ob_*qOSV0guPU{XQci*!ziVM5B_%k|DCXDu71ORM5uIo z>bL(B!lB#Ku>F4`=4I5m3%36Fxvc+Z(jXIP7};|n&@fu^@}{OZQn;11e=m!}rf()T zG|(_X^75AE6{K(ntI2+rm`&eYY-6C|Gs(+nO*f=)H*5cX)_I%0g;;_h)9;Yv?~sA- z5SB%V=^`X~5i+m{VOfHhE- zBzYAwunJ*WgP5*ClGh*uYY>)oi0L{cc^xva4q@4Vm~KFlHy{HW5SC4d=_Vw36Ed&~ zVcCM1Zb6c_AOl+v7Bs{Z4M|2r2G9_eZHVbMBpH0@Y#YL|12Nr!B=0~5b|5Smh$#k= zjDZYbAS}BO(_KjNE@WUA!mj zKn6}AP&@#J2O#hO3?2Z*2VnRB_~-@(AAk}7FaiKU0AL6JC?NnN1Q3J(h7f=f0Wcx} zK?Gok04Om4BL)z}0EQTVk^nFg06_v^NB}4)03!tuqyUB#fRX_)G5|paV8{R{IRGOE z5aa-c9Dq^)FbV)c0bnQqC?x=+1Q3(}h7y2M0Wc~6K?Pu_04Oy8qXrPv0EQZX(f}|T z06_y_XaFcJ0HXyEv;c+{fYJdlIsicjVCVoSJpiKz5cB|s9)L0cFa`j@0ALsZC?f!4 z1Q3h>h7o`=0Wc;2!31EK04Os6V+Ih+0EQWWvH&m^0Ko!aSO6$10AmFZtN?};fC2yv z01yCx0RSi)0Am9XYygH0fU*NHb^yT+VAugD1b{&R1O&i904N6l;{XsG0EPpAasn_; z0Ko}hH~}aZ0OJA>TmXg(fN}#cZUDgzV7LJ&4*=r<5Ig{e2Y~VdFkS$`3t)HwC?5dh z0}y-wh7W-912BF7!4F{g0jK}~695nb07d|S3IZ@e03irq1OezN0CoyMoB}YX0H_cE z69N!I07eLa3Ii}<03i%ugaPPj0CpNcoCYwb0jLN769Et+07e9WiUKfE03ixsL;V8j8a1OSr&5E1}J0)R>aFi8L*31B1vs1yK`0uWLFMhbvR z12Aa-Aq`-p0jNx>TsqZyO00WNW`(Tp!^j})3<8>Y2VnufHLOU>eYk@mtj=g&RdK(4 z#%W{zX5m}f`jG$@w-UPt7t5m`xGNvFANam*uW-Va{;^ebk(xMoTFS-+b~xd=%6C;s z6Uu${2vBf%V{MtHeNbYS62%!c^eT!odgxm7V@)xC&VY)K5pfe6kzKK_-;txb6V)k8ApX$EiZKo*e)+EIp$2w=NFtDIA0>BHQq2Fjx)ad zHndFys3S-E!8|O2`(`uIuV>G9%}`Sg5+H;$8j8b%!AbBb7-u1mjQKP%M$t^e`hr*O zRgx|y{1minRVw;smuKqOi(qSJFIDavH`V4nn)Nd+$k%mHdFJZ4Gv5~Om~d{GYVVfl za1VY3)TrnBl{%+0JLUa-g+)tOB(UZS+n44@OLBM0bH`Uyt9v=WBZfmRFj2h~mrmrn zt;2CSp-S-a>yIN0U@Q>LWlZL`c|o~(%T;^v)MgXKySCz~(U)Z_@AxgnIB*aRq(AR4 zW=Z|zRz+x4Mi|M0G*8Q4D9Qzc;y>)Nlr-u>`o75L<=`UC_Q*>8BPTaX>oJMtjK>-U zwoa&wWWL)o9G4QR?zLXEcY6Vj2h|hMWSPGf&9ST{m@yLixT^S+Oj6a5QQWexyq9>t zac+6Ny>+4Z_h|9&*Y<9?XFdkWpTjkJ#iTHx-D9*U}3>wF)rU4Uk{r>kbCul@ajhb38c-}njV`iS z((WE9y)&r`5@f$to^Y9kXkh+apUCZ94rk_Ix5vg)yYm;BgYSWi+ycmWcNdR53aM&7 zrN9;(&|T~saMKp0c0Q?ngMZWS7W@N$^-bh(B5!b{UfTY`>byV#|Ai*hbpAD@@Tnqg^N`*^~0I!$QYlAB+R)2+849 zD@j^}nL}J_4pPTM73&F5u4bR87kR8aI&D&1C!Nz#A(v~sk7<2cP(Pk}m3ai>$pgLR zl=)Q8UIr_4>Am5wyVgh&xd_|D#h{E~ALzWQt1dPWHsEsXSG&(zG;f1QgYSr8yIVOb zCsN;mdezvk&Q+4(B9;1+ z+7@#o*sBHS18goQxv%TwQ>+A?HhEPinbe`&`M9b86lt&OV7CLao=~p_Eq>e;-$Y*( zU?k~vu9oC1lU#i=V_x|8Fe!qzQIfUdO^ek9O~VD_$oMMSb!`!Ir_6C~7v^A_a^vB) zcngP2^~*^?q1?_%K@9mO7(;s-li3HD!t!XnTijY0%^N!K!C+oxllDDRSCo~Bp3T#_ z2bfprxBZ7`7+TVz3*{!D2i9$yW|l$~5G3xWW38J!E;D3rm~adYNrR=D7U_e z%%%dusz~343Htz(@K1hBgMQ39es*i`d1=xP`r-6xKm?0tRJcN@3uduYRflqY-|qs_ zg6TZeZSME_#t4gB+&5^vx*i4@XO(Y?53AKa&kT99pPzRt^9G_e^uri4Q&I6tS0Cd3 zmsb5fFN47UqXn62g$0>KOI>N@vIJPb$f3{ybM98yC*_Z>@xwyTsAaIi6>7IK9iSgq znsmi0I!O~lL{9R(G52n%D`3xizNBI`0CowtbS(j8Ml}I z$w7{Bh!PTZuj|xjolK}-8_VKjy+HHa?x1-z&V2naPldjG)u&>SD0X`cnh8A9|7W26K5Nj5S3XfW;;mQq{ zn+@C9yYIhc&+Oc#bysd)NqrUdD)p5;mB^L^<=* zB);oA9G=!e^)D&}!}ZBmD$m-Vze`T?^TbICsra0p@2>pR z@Ml7_rN}g?TBrmG_3wv>1tr&!5Sl|bh=7kC2}Lj8G7T4m2-W*OvQastMZ( z-x6lqBcQThtXPo+K9+|_)~hDRx)M9&d^DvF#BX&c>Rp_g^rfStxiveQTE|a_hXLukMKuuEaN(WAS zj_o7&f z<%A-38lqI(lqZPTX(NAG=J;EHBh-JhEYD;c@yPbQ_p!PHJc2L6E+X;O-Q%Y@>QjfO zJ0lwRjs6T-IGP)(aB`!%8-8)2=jUvhx--kYgkPvQ3>(P9JAUB+p5LUkpt3TsPrG=? z_9I|F4AF$6^TZ$&3;KVCfT;tVO^X5fmOLCr@~1JfASegpZF8`)@X*z#ed*D=+Pe8CygiNv`= zjhn%*AW-=MqAfK+au{E;Nh^q?PoIPwWc z{z$zJ`tAwm|I#Uf09yTuq8ToVI3j~1zoH28)nE2&!6>HuiXt;Eia7EKM}9?-xqHIR z>-Y``bj~lJae3g4Bc8uyghx2q2a=8&1%dvRx0X1dt#BCQxL-hn{1^!If8!Lb!6;_` z5yeg1BH6(a^l!^$>j8QfTrPt}=-pq-xxL;8O`8qI)-phwdzkt@q0gWRv zIPwcU!_X}u79MCxO2}gbb&DcG0+w1tha*967he5xhXoHI)j>zE1uPA~% z>dQVBjAG`mD6-Yej)Os<^L_!1TO>O;g8pr}Y=xtD!R0am0{v^b z1mb`W!eNZ#egO^gMQHB%IqNlVcKN9tW%<@7gFoUY&%Z)8*{r+ZHKm(<8TUB$JJMNzvr`YmRZq81=IOTR zlc*%cZSG1gg0}$`kiM00F9vTQVfAru4Zs$S&vkW8kB)cEjZMJE&Bajzoi~t{5(Cw{ zYxBF~_mo$uu^GEhZT*zs->oDT>Lv!_CWK>``@23M(Q@d{NWb+P!Dmh?m#ma8L20pd zyM8tAR*R6I0?ayFj!rDakz@UxYr)75mPL`zPiB_qy7bnOEMtQefiKe8572fsY%eqR zO;Kzr6EtFxD@BnjW0oacE*ETACNRrG!JPi%gv*l+2Og);k&&G?3!`aekGUtt;8w$% z@blwGpZ1;WX8m)}y}cLAkAiJ(-znxc-6<+w2*B>lm!I6Ltb1^>*Ew!OqEd8n*GJ_8 z{P@`P+}<7oXWzw%a+jVv0cY0y(enX@`kT}ZGqpmu;%N5?&$nfA8wFW>E0S1NLt2d& zarsxr`kTK+_VG)AcNAeuP~R-!{?BJu19u$mne@!Lpi4(>iq|uc-bbHnufJW=J|FC; zl#MFZ&XgRqnZN|^*X=qSmF}F-qOqO+3h43b<^B}!#L-UDI)V&|=^d)I+s5cQ@TM|< z@*BK&)|xYGL_`+ymT1kI#+qD$29IYXXLelPoa{YeZMt>fZq{_CWL)_u<2`XTy0+wG z+-_)gZTGnF&3Zk&Bywo=XmHB^@Z=8HB6amlldKund9dM+Om$4LxZk$K&Y~4ue zZ`@v9m5igcX)|q^-ac^I$zgFrenY;;c=qnorDS z`mC{b_HS*yAKwAt3_hr>sZ}`gsC%w5QBgQIw~&&eow>xFpM5~?SVsgOuPMx&fce{S z&qrcb5G5Zn%vUCCO5mGYYm^UCKIXL??XbJRgU)2!8JwEAvSeii4-Q0FDA8=le*|B9B?xiK3@w9T@2P2jaO=p=C>(-qsi%Q3e0lKyAJ5xu?%WqMKh-=43n{!{pp>Emfb|n~FQ76YINs@j>Zyy{VI5fSlLxGJ2@PjQP^4Wtxc+}(R1vU_#?NdZ@i-x&CDwYvaGWP+PPx)VXmfZrO8rdb)EzyKdw)ZOO)%;+*Wa+S>ji zBMi> zj|*X!re3sn_zef`1-R@^B8?CKKla`;uBmPLAEtL9DiS(TR8)je1f+ush*B&_krD_Z zMT#^jLP94}L`5KU3kK>gmUGf8O)Fd0yN%JF{oanprbz zXMfh(duD$%l=7BF7DU5>Z@82?=E*)(tsvkLM=1< z&LCXZi_h`pr`*1VYq+c-OXrcXHwk768_5eQ>@G{C@Mls$pitd%hWpKll)hZyhRYlY|z-4JXS8-WG!G`z}+hyhQF40AZksYhM1lxBbh;ght zC}D4lV3c~v`}X#Di}i$1_`E|Uyh0C>X0r~--5t8Re$_$mZYwFZtZTPvH92NY!A+@q zc|xK*#nyHS%R!i(LXtm+_oTuHw>snC7riFn!NJvK<<%Upa{cOBqW5qP?fWK&N)K6d z^1kwIJ97KjWiqzs_^x|7nTKZE0vz7g=BHSkJHEP$9x8b_R01vc@rmzDspy>Qw`Z*_ zbZc32uF8mInlonvAzU1p0Vb z?iY9@aqSJ$DxGqm{^~(0diB675}W{fjlipSIYIQ=f!7K-CFpenudi~d(O(TT`1fft zRJbELkrHB!B~1T<_?BG5D)KM#Y}jy8I_(l-c*uDPv8Iw=&VG*gEi|2C zPU+-GfHH12?d=6 ziM*x~cHA#SSGvTT-_L$y|A_cObvxXV4)+7L4&PrYCiq`*A zW%zGJ<3oIw3IX#}C|V@@ABd270O~xF-Ads<5|5NcB?KD(TqLd~@sl;%7|o-|hn5OK z^Gqn=?*uo>8u`#lA#DEtCT@H2=(POXitR!h0O}x8&r%_9o(^>#sb{4SI?wsD!~i49 z_j>I{O6B!`Td(c796Ha2l16q}DTL4Squl>1;vS{gn;l251C%g-<3asj5<{!jJF5c- zA>0EYT!auVQV16%go_r!Jru&l2;m+H;T{X&o(SP$g>X-WaB)Jocp+SZ5DqDXOBBK- z3E`53a4AB#R3TiN5H4K^_YBMKkJf-JegGzaX%_cK>p~WBK)#J;J%98K$YKvLd866c zA8ig<>;v*`Hb3-7+dvivfXSQ9`Tl4p$l?%?kI>xZkM@KtjsTMh&CC91f5_q(kZ-G* z9fl5tEKUHEx0=Oa=xE5|6p(MbSr3MegDlPflee3lVdzxI;vA4~r}-fa{R*-;4@}-^ z&WEA%Ad3q?K4Nnh3|$IYTmmK&o0nneTFBxGkZ-q{9gc2>EUp2QcbmoG=uXHY9>_;( z)`O#aAd4HoWKy#;96bVABmnvLnjgZ^Gmyn?VDesbJ{-LSStJ7a$jx1F^af;+1WYD3 zFT>F!$RZg?O9iD-i=smCP)X8(P*fQ103oB9U713<$-5=?_5i0fK3vZfa5N zhyiLzB@l`cvlW080?^VygVdq`2p$^A3m_B|hC2``3<#!!K2eK0fH0wv)B&NGF=qpj zA^=)?=nJ(dPDCP&qyY%Uf-w$6iUNY^p+#y@T!;Z0Niz_N72_R<1OsRppp9x#+z1|8 z$y*>48wMGOlm-MdKtHNQ@ghuUB^^PieVB?sq#S^j5jv?B#g9m&mGl6i*fITqNJT&} zBXnIYN)RzXE9nP9abUIrk*WY%CMb=16bQjXCm8}l0WjP_$n$_;Cg=h6s3QmyI>{&y zYCq;|5K;?3%M3lD9(5FvNGJIeggSsR4nkfA1T#aW)T53g2IwSHK&XQl?;xZ;fR+V% zPCe=bf`?u*1BBwlAcK(C0l_TLYwA&_5GM4JxggXbOhpjV2tdmUg{nuLMkLZpmVi)P znEoK7DIk~?>ZTqgju@bqtO22bn5`fr1VGCM4N{MiK=3d~Vn8Tv40kZn8W7C3^YqqP z!f--4*0rc{tzGBKRLVmk%NcU#yHx*%%uD`zXEU3oajKp3g&)R)TUGq@aOEzK_1%4w zH>#p0U8g4xw6_WhN){YRmT%u{$T{nXzq5%yB`%zUNR7J>S;(}R*4s14>p!%+9Mkho zfZcR+9nUL%);k`Q4oiUV_@;}PcS?)IyEoP3PLQmQnPbJy zE0@18f`$1yzYaG1xG^l%?Vc+Pvv@0&D?IP(%=1~kcfTswdJ9+`=b>EAMyV!3q}%$Y zn`-yDw_m}cA8z@WP!v4LpNoHFmz^tv}G;XDmw=Y7*;y7Ax-p4_mH6mJJI7JPcY z`+yo7xfPo~M{(ubU|{~Sm#fm|*fx}^*eP9I?z&OTr#w&lZk{NdKr!((GFBBTa=R&q ze?8r=N^vUg@^0VEZ{E*PA|wA*D_h?jis18cL&^5_oH1oqaT}K6l<_E{)A(i+^BLVK z28JJO3`<}=l#yR;>*dac`JfgW{3u=EP-VFeX>*QQ$`H2?E>v2j&HGBEQ^t_~&CR~x zZHgy*7++^f-~>BF%(3|IE@OxA54_%_eigcFet&NQmLBuaOK9}uy*U@M{lQ!i$?A)@ z9Ax4C;ToCG+r%%)Ij_hx2PqGM1f9?9?)Zrc_@A&T=v%&Q<>UhMacc5V0#{TzyDar9 zig;EOJH69WX2fdCC)X0BJ?AQ8vPew}FB=wejjBm&l`nf#Dl+Z;-M!zvhYjba8uXct zFv{uQD}QLa5-fJMUWMLkabyQvw&CTx<#Rbb?e^fL$tjt2M%B)dSBtjyOUvL}!e04= z37)dKj3C9cDcfB52ySqn%0Y_mW;~%#&_?o;LDamT{b5+iwi_0MD8>^-FL2v$N@>OAF(3YCl3zpY0I0DW?ui#Q!wx3W71wE?x+PM1e z)lU|g<@x1=#W;8b$#|%|-mW-BC3n+B&Rbthnb?%t?Lu-PY7itVT6V=NfIDx6?hnex zeHyJbY$|_gF_<4TW?^0Q(L5I0_?M^0ONqQ@WTn^Le>TWMHvrU(E_`;jUNZ zY1Mk*K(eS;rP45HR8>)^oO~jTtXvZ}owv9##?Vy@AN2`;zWSj3=rppQl z!!FP-Loecl> zz)N$t4xfF10yr4(pNfS4>0=My5C`)NFUJnaveglc?7Ry`VN3m8j9gf^Dki@zs{JYOt*eqN7c*W2fv-%5w+bsAl%FBe z?`)Rr`9~1bWRvk|79XRg&L zbDU7VIwkE0`l^^^!w2X>2J#iRYqh1Bmt1e2XJ8DwvCzdresTt$krH6geqMO@lwQD! z@G9N0dC|RN*F0#n3CBQwM?;s*&fPX`yol0<9lGuQp6!Jrwnwk9>%1O|pXH!speGIimEu6VNiA2-t|x7;UovN}Kj!YD-slzzo}_>GA%eFkRCwnxKXdRtt}76R{bsO+ zLjg1V7jJC#y>Gvp=X8NzrcjHQDU~hQA zbJtRo=Cf()wIdrg&LvdX7x$-Iygyr6OiIr$W`fKx&nF`Z3C{|LQesQNxN*>+n4hN#nIQ{yAi|%kJPoHVo!CE37N*N<1t;QDjHJG zYV6$U(4H1qiP}C;5+h%k^}g_iZ|p!}&nMJ5^#Zwecip2Pf5Tc&>B#^QA1!JL{=F;2 zlNS-8%bLsQDbT|@l2D)724pIR$JVeD3K*v zr<#Mj*-EcZElta2U**(ox=H{Q0M2pbh?mEl-zUw19Qp`6d+qj>rcpn!*9L<+AF$yL zw#tXSuG>E>eC@NOd1yUqD7pmU<~pf=Y=Uo`HR;;5XYCfrT(7yVUDmN`T;}ddTk+Ye z&8Vv0^{&L!MrtzP?;ShkPQEsq{YL%Xm0SLi`N~(T-zj%%R}Hl{uZNC9>R0vRoY;xs#wu{q=!* zW*nzI4+YSakM&>NU!-Nly`3CujhtL4IQ4sVki)CQTp$IdzF%C*)`BrZ_d|wg;ny3? zg%ekWPgZvoj6Lp7KJ=AR1T!@j2CduZi9V1Ojh%?S zEA@_ZzmPYJjV)4}=03|xd5Y@?m_Os;KCJIE4iGf z=bT5tT8|u~op%?Ua+RZ+AWu`KEtgtT((eU4yKP)H5w*slj#IpOpzzdHxwqI|x{ca! z73yP6(e)3;Q`O&}XFoLhSjY1)^#HBa(W^&mFSIr^WzG3*8mKMVitfJp+>HOv5 zoEAImcC74tMcOR(&3jT_pH6Tj%?JS`R}4%d>3kg2%a%?mxa?90a?B z&r)o^dyH}VSgApcT}091^ch`k`NZDo)2ni?_t)9m*S%7>bC2p>Ti9BYi9}!LHu_}n zaT|%$k7S{1UCB@J51w9CiVT)RIXb#5tjg%KE@8&^(fOKwn4ZxTKCf!&`s@*s$A7Mq zYXUmovQ%pKWo(+=?wAwABGjVL4h(`}4@oFj#_^%E%8!iIufJG6r}wrpY4kI_yLq5a zaF_CXTW`L`DGTvWbhfx5fq&H`+eALYfq0(k}I^)Zn-}F-G4=RimuubxFs^bMceIFs^74ey6%8HdiPq z74R;I`rYjC=*b(YVhNqMMK$jpFM8vU+38Ss*G zNb!!0b?cJs7~*oJ{GvuymAb>#43z;OW#WLd}hTZ&z_B|{e~>PS|2oGy{E7vS%!Fh#gp%4I}!!G{rpmrbIS59 ztB5*kTzl`NOBKtTLfg$mW}mBOFyEe$d+yGDwV2+FGu=w|VZ2ITQ9HiWo0I;F%M{Ph z8+8$v?MAXMy}Z+)SL(=-yrd6w&g{`oh$@B7VfTFEAAI~&wo$214m~jew-Q3G9Zz>IVR~7x5=&62{9s$NI?zX$C#Wb}JCj0*H&bhuJP&@B zC?N15ch7yOa{A!a(;eS$ll^fcJ6_*#iF|tKL)J2BnwogN3x)jvhhk zzP(H`pX+O1NeSyZVK*z^aAENM9iNXM2B2Q3V6RkVGe$4quIR#9dFA=LjcsRm6)Izy zFX_-$jyiHxJG-w*_q2%G8P;kJxQIgvqMITuy2cE)-Y=YmYuj4wZ7IP{5rIj5P~Ez# z*Ux;I#-7=BdCv*B!xEKryqO@5v}YN8cJgR1XVRI<>-WN>btm}FblPo2%V=oo9_+4< zyq)wy&MxACOtYr03?CtQGGkF)Xmy{=X#!>MbdDF=sAz8 z1u|w+(58K;s@a@h3bvocG#9eJm?Ty36OSNm+U1?wT&Y#Ozk$oF! zbu6g;g+)Zg+ft@v|CnU3rdg9i2vPDyq_6xWZ=bN^W)H4#_l?Gt0#&mqnhO(Npi7dqQtc9+q3N3uMWC747xonOGzr@eE9i7bceWKIsJ>Hx8BgqC;1V!QL;{?(n6VZfGhi}hnO^36Z@;JnO+(< zRoJc~s(P`j@Y5FtnR4z2j9$vq@_%yd(hXJ9p_|KMr3VcS+dpUOsKoVJJPqF)*021i z&sh)F$_%Ku)SdNFI1}LA&YbN^~IH39RvHkFMDjrme37mM~%@FqAsUvnL~n9 zADe)5344-xxA5tAxEI{GbLOKAlMAf5{X5DbERD_twTcib@dolEu+y%_!X79IHS&3) z1lLF`Qh1$3szARnQH=gv8FXBX`nK(m)AD$JJz$HVYPS0ZJ04A+Gjq3b&7kZagJ^KJ zxBQs&`C^MDPyp}eWh=kom5bDbsGZZ{>p5e#cSYORQKvrI+MU2nRt7#5$vQwN>e9d& zPI~8NhYeI@Rj~{|Fj%4c$YxTlx@0U_I?N)Y6vB2M9xsulLBkB#__RjQx|-uB?efWM zeCts!LH?}xpubp(#-~s;A3wyZekByG(ROKQs@2`t+ppo6pU5Gz;b5ZFb#pnl z-3c30)01(P^Cd>D&x^7-rM!~iTuavBopz#8P8M>PT)fwaR`9-ux4eiEUt;#ENi9}J z%&+Y~`Cl*JKYy7%|M5D*Iz8}k2j{KprT0q=iVQuI&YO=NnxCC`(Xlr;hTPg?h;`RseFICtnX-MhOUY~dq_RG+hgior2W;%64VXEGhurhIRb ziHfRC^IxoFBqhFYyng+PC*aHbO!I}w`=@d)rf!s}@iMv&(hxNxpK630x$&eZ*-w}J zO11a!vC9!TTpCx;a>UE?cgeel73#e(N_U@Kd|+U(8p_A!*LPTHKXQGf(H~yFV>_#G zN%-M@%JZFJtrx>aYmg7>t&DN|UkIFd)6>{lA}+3^e~hQ?F)t$MZohVD$K$Y9!#>%M z=&bIau(kL^JP6i$T74swbz4;CLej?&vj-U+%zZcZYjb~8gV>Z@appG(F`dtNYJX&m znXTkHhBL61W~nvo6Cre@k1)wa)8YhvShI7N--?Av^N`jPj|mF~V8Pt+rsICkrk^Q{ z3B)~UV)2e=%d(c|+tt73rz;=$I^IU0=3w|MOBc0$fV%26)yFTGFIKe&Ovq?^UcdHo zDNN#tT~K;M?&VG@8$8m5{>~}OCoi7ZH&L&KD7_`9`AoRI6b(*#A;EpQ5jl_ZJP=Fd zqB<_z=X2o5*il5_rN9-hUb)RJ`|eLZ(SjQGo>^X6u6Odi60hmAb%ELhxbm+EIQvg$CnM zfUtsNIBmt2zQjZ83@%fHbC6hNt4A)(p4I_ZHs+Lt0a~E!qI6A*FqWP~%WJ2^){{(R zUPM84yurE69Up8hnf2c-U7y#IJ|cW?WZZ8&Ch8oVODgwplVIy}RpgEHSxKcVW{0CE zFGd6li+y0J`1q=!=m|&kw8+uy#q^Fhlkh%452x`C8^c-lb5>`aVf>q}pY(-YTrT#S z6cCGod}61mw^6~X9ReZ#!@CpH8KJVBiieeyq$ei8+M@{@!fjfr3!q)RK-6hDa^-mD zzAwi+clfx|D+67H%7qY$^3vtn9OaM4uui_WopCD8>Z;`fiItr@6``czS=(9Jl_^=J ziCNE4hR_VN0@gc&DQu2_iq2lyrJL;@ywnT5HF+T!`ayRv@#Az47HfvybU7sX)lb~m zTM>Ao$nvIxR}?Ohs@qaJ|5GIh(rDmXUXvf=-uf9sME}kVSXw(de_Q#Hdx76I8TMIq3>} zy(hTNIXpPAl_Pe(t?5{ckaRZR!h+=k1zBn8@>0&qwf=Y98tmw6k9$s5Pc=K-cD-?B zigx!Nlhe`t^fKr7MRCWOiHbf6woht&R#8SJmTB!By;e`$tb6nnQ7uE_si?TXHPy_b{@o45}e(=@LUwmCUDNN23MRz}J) z*>Cpm2W`qhZzVfK*&S9)-TNZ^pxGGy>Xdoxa`;iRkbDm~GGoboc?3@OGoKl)wXFWq zN7(*oBAJfwjoE`%!s@UbjGJ)h^-8C+5b&%hd}(B^-e+hRF0|)K=;45k)p=VWBlQYL zN9Q1ocky?g7yA3HS96I+NSM}dkSiD1kW|zJLrwqSbx!XPa(vd!aaDJwEEck;=Sxx4u_q$J{W-c?zVWX3{GhLJ9%idV@hsh@6>vw&zYU& zrGnYXFKf%MDwl*5VsY%(u-F*M!h?PP@S+zeS+ zbK=`6Ahr)~*PI5jx}?fGNzE3AjgE_`v$P`c_|Gps8zSN`%$@yAYVI^Ion&So}c&NhJ@FxLa? z%IT0Vz&hu{_EP$Y@&)zMw(~;X93zW!HQQZ-77+5TybHm7^meBY3}z@!9#0{ng@{*9 z#B)Hvub{n{a@D<2QZn9xe@@I6HgG|DMFs686xJq^A2|KTg&}TA{)+Zzz3$$hM=_TBC(nU56Sjxdv{?bHKH{wMpdfWPy7w$ z@mDo_ug>5jhp^#^1K}g6uG<3aqW%ht3ZBSR|9&Tjj}EgLz~=7g-a2<lK^&8?c*;;%BT(P@d_wMA}h*k46>(Rry97rJ% z1vZnJmv5|EXRpZkqi*^>OB1xqU`(11H1vIzD)=dbG3ASzobvn29A9v>&c2q91i4X+ zn)89KzLrk}ktoL7^VH1308SBWJ#jQ z96uSr@`5JI@@AktJ?aqB@Lv!VkRI5_#{V9%=PNQ#TfNFpLG=6q#OLP#b{rahhvxZ? z$@4=fncpE}O09kfHuKY&n}5&l{7Wt;S(@di@;JZcdj27g^IO8^E<5dC(mQ{Y$EiS( zar!%e(dv-qkJx_~{A(WP*M!Zs75X2s|D5poj|rRg4Xl4j@BC99=eNwye@xi?iq-QE zd7j@BI{zt;^J~K9>Q}6uf5`KswEtVIoiydkU&urw$rOT80^JK+Y4*bMO!>pyHRIgn*6H5G3onTu@|Rp zFRV*TZSy?ejWU2~o>mo3NZ;Rqy*O)o0WV#&%`>qZ;R*- zo6puG=YX^%=nF{Hm&inzWH%VK(`;OiTmS}>phb|V&By_mF=sF~7FLD4bxeG>-o44wbWFRXQlvXX53L!v+rUR8xVR!@jX#tT`(1U8ZGzfDl zG#jXl8lw=<&j?_ph6=0Y(jii*(43$$8qCdrepWyvHB?$HmjN+Ch2{s9(PDf9`Z)ls zG|=;Exl9NFYV=W18674mp#LBsk_LKREtdshPK`bdDx=3#1@r>}th7*TwOlqtDmD5H zsEh$K7|_oLh@^$OtL3sIMySzBpfX0xPC&m9fRzp!tdqlH$s3GeG62^hDi$Smj*;KKyhlhya;nzv?Hi&AEqj>Uk<>^2%S>P zdP`?&{l^H6mo_iFLN{4<5Dm#F=8PtCn5XlUcR?j_- z7@9$ZYPC&uUH7af@U3)3~ttF8N>r-*cD}8%eh)(y7LC4yYP6 zYS0o6Zi~+r3Rl^Nd9PR89j4iIiXG~ZvltgAuirEMlIrNXQ^HneRrA<>ZfWE4`ueVO zbwBB?_bXDKQ;#p?N zBycJ#EnDrbs(#%+*N$qP-=-kyFq-^}XK^y$p%_L?y?6%_DG;&SoHwgld!m|6UI;5L zWF5>5qKUu@ls)Qn&_2O5Fz>f>^3iEiB01Z-SI0>F$>t{4jYXk;m&@4m;^ei0q2$y<;ugy#zCk=G{b#p|8Q zC>RVTdG|yHXor<+R7picBjkJcHdp7{Ki{KZFu2!OwZrCoi)+o7iy+Rb>B_?{M(sIG zz>(3EIF``Cfh9M8ubnSU^-k~^N!h->1^paL{QTNI&+_}ekCr~)u55QEPqgpsO?+vZ znP4F;wQcO&E+4!nXEfjh0lNqq4y-K23z0fIZ{IH>?XHpRpOP}KoeIgc6%t=bNH>~y zkgHSmn{h6gw`Coxmmrdg=fX*MeM-CXYgG$kmp<>1vLfoUhE%}Iasrz=y*Vx%sw8|{ zQ$lC?iTej)#Nw{cYAV>?oAF7UKQT=fW07>ZFl>0kvlTK;2vZ&y?5+TPU*FcnWs`uXC2_v1G))g zam8~_t^6Q9DxW)Xk}Wv}ImwRX31^r^yC7+PAhot?E4+R2q7XZ|R&_XehSa1FOBWQn zmpn9A?Q20Ss;jy=lGvwg_T}Do0U>ihc{HEkGEX8BVrs9DloS^eGK~g=uwXO%yvEw) zgj^*^5!AfM*x#sni(G$uV>{^vKB?L3)n~8;9$75Lb!jZ7eABk&{^rs9Vt^)e`Q&+2zJY^GAh~R?RJ! z0^$IoKU1CfPjHm~7hvUo0;K$B$Vwa)idu&j$sn=MlK0J-0DG#RWSmEaN$j)YZ9EfV z&x8Y@4(t3JBifR;;Y^S{9gYdLUq=|JDe-fRU%_p^?e@sE^r(GESm`u%+`_?7e5nm)>2uilC7N9@1t4u4S7r=z%Q z0s6Iq?}zQ*w~5>+NgZqCTZw2Z-lj8Q_H4Ls3|KJmhy33K|GowMg)`%|^e4pIzYG3{ zyC z(CpW(->S&Oj}d8qW=GiSP5Xmg<8>rTLf0y(k+P{~!EvHa>ime&k^AN^?SCvP{H?n1 zhXljpKUE+y{d@&t*gSGx>QCj0U#kg!D=YlJ2&-HFA8HU2X@4tN4E|nEXsPhiMA&_+ zZ^Hjw@!|JM#gqq56rw6%o(9E=6u12E2urrH)(L5Z%h9#y6LpW9r&piVy-i0C| zI`~Lem?Rd=u+w~@o_iiBO@h9L=xjuyVUm4d24eHAdhR7)F$r1$(IG^x!6e7P47<%C z_1tSf={;yGL}xov5-vFhW*{|Z)N^kDi}#@Y5FKKqD_n8~%&^ytspsAXN|T|VAUdQ- zG+dGZW*|3D*K?DA#boFfM28%?2A3p*xu`G<0mjq-MJgz>njFH;-bbJ4=|<& zR8v8D)EsFMo>XWK5El(bGr*V`phyipspd$JD5XLJL0q($+X2S=0M*n`c{N8y#0C{w z2*gE)2@5dZ4^X6mYO6UiBV?%2A|Nh$3@X6*5TKd{YNF=IitwaHgF##jn70AOJOD*n zsJ)uwK13-sS`Ng;h?xyA764S!LVeU6IS?DvXjKpw6NVws_%J|`4*EdNaX&(a2CW6+ zV#XW~G(HBXrh_J`IUYoK(xCN0Tr3#PK;x4DMS5tKn&TlvDGk~P#Knra9cU~DsHTTj zsyPA?8#HJLh>Hyq7HBL9P-K9%sX6i>WN6X0Ag+BFRG_g8pqc?XpytSj@T5h%fVkK( zZv&0x0g8;!c{N7?L@6!W3&h2NnGG~n22?Xbx78el5F4~;IEV{?VF)r-2PiT@nbjQ+ zBV_2%;UKR4nBzgl8h~mhD37|MFv61#9RuPzfYA&x)&?jtLrWPxg{JDx5El?L8)R$_sAh%ws5^oY8}#UU5EnOwA=uao zpvVS&pzbJ%kYPZ#JTuY=E2ga3+8I^i_7-W=#YcPA8m^OD^!-i=EWh+#+i8kRiLqR_ zxaSXNP%)&*4KaRjsZ0HTYp`EdX+O8*`r9h)=ayW5Tc!PP4fek^*l&xq|Ei{ z-x}<{`Vz$d)?gR@w+8#)8tnfcYcM0Bj|M8az#I)iQ_{VmmN~4$Dd1Qfxye>W*=cVh z#=*DFA#Zo5IO$ZEt&GXgrBHldwci~h^q%i^OXpJtDf;0oV-=EfPd>yrjm1K#_?=;{=iUu5Yp_YOAhyFYb8+)X8db*eYJ>#7-2YhsaQ z(R`T?^GzFe`^4wBd6hz1#&YQy#iE5?l`enQC?K=wD*B+og%! zb+deoPY4D#&$L|d5*JGno(ok(4i0&Pw4zYWHMY1H@~5kC_8<6_z{6|Zqi<>Dp=uQM z&$&7ue@ML=IlJXE!Jf4#E7-c<+TrAiWa+K0sO6NKQjG6ez4S`Ut;CB9w%-O$D`&=c zJpUkIaCw%_cY;0pn|v@uUcK~|Ui5OtO(`vk{I$~Z2{CI3KAN`e{xva^>(*_llnzWc zy+m%@=i``0XqP@EWZW!5y?vsX72mPHWLfXKqF9O|?b2H?T=!4N?>+a$WZZoBcLRIo zZ);{vDUtXOCUm2Z?WR{Fh3!UC4VIjg9tj`saT|?w7)av1OmRY1>wT4C*5J@;c(zYx zIr~w{pd2YZysn8Q|I))dlrn1zYU^nR?Y-T`ZX!KJ@1v8fUiAffuWK^pYX#=`Bo~2;-_5jB%#>-q_iacu=yZA;$S;`{kN>Xh9z~f*D&%&wFCl z7WllcGn{99-FhI^K(v?XCb%LtyRx&DTTn8~kP;kGN^o2$YUQ)44hOy&zFlKO8Js9( zaEIl(z+X%%h!w&79eav)}xQMy`Sd}a2cOR?bmB*)|y<{QTle>+@XY3=8glVCBB<7+uy_eM<@PZAo=$Zne2E`#`UWr zw%e4eV2+|_uDAOW?Ab#v=U;~^6yu7?@J%CR_&V!GFEh?~&;1$@S5UoFR+{qHH<%4> z<-2!%ss~{f+d0X};foKHMwenHzhw4M-W2)@z1tHzEuiw^Q_Cht0%2%lM7(k=PtJ=& z1Y+2pvoSIkp5VSyV-9H^Q0EbycOa~*YbG!4j3rl(tiOefEEx_7WqPlBmX749uE`Y* zRX|`Co(V(Pg~dj>oQ1^?EGu2$uHt&Da(%-wc;(Qrt^Ox-E69QEiUFG>aQ*Pussqt_ zVdHi&alQ|0)aJagwl@v)si(ZThZnF5iLE~x>2`p><=NZtB^EB&^4*Uq7vg}_L58Ab zaT`6$?RygGux*mYQ<5*aux<11Qch=i^@oHW^C!xEi*cpqw)&oxs#roMA$iHU+H9qW zSZ4y;G50dUffq(T&v@jQwJ!*P-{~hJ>MLtI>r@n1syofgHn$2RhO3Et5pem9aae6k z2@u9lh>6orCT^q^RH#N}PDQYXd$^U>)pcE5z8B8ATamfa-qv$tYomp4zG-ImbGDCn z00-Q3bd)@zx=R?_qxecPAKF--tq;$^QeM3-;XY1yMTRz!Kdmpe09S!jn z`1dN|-i32o6-vZydH;$U6MqZXj&Q$ty-mSX?2^mE;-PXUbLHCQuP>&BMrDNdfM4IT zD^!J?6cVDMx-t82-m-tIcv(utx(~?;Hm?wk?#d{agx@@ZfP86PK6+sImWaKA?qJt) zH2Os3!3YEGclr1}@WqHCIwkK4MP^j^&ZB;a%KkUB7!HfK`)5^mD?5XUCE3MA6-gn$ zV(mv<#-enexm@Wsiq*v} zif7_>?!`LC?z|X&6OMBe%rb63-0p!k;m`Evb&a*0_ zw@jtHpDwBoZ|;^*r=JY*8WBzAn88*_)Len23p(FdhS*ds^%gw4)Mpe6oS4zoG1bo8 z61yz)Id&!3_qxjPr^Ac*48i5TL-5?9p5)w%o~2ov;gjH*;N@{qr>AMLI99TD&bsmI zqUz}7$z+caewVE9O_fgE&~fur8NBn@bX6Q7W+=u6R?~FKT!dI-PkhfK)xF}GP;gx1 zj!*uI$?~8qmwj3}Z7N-P-e#$D08V?g@^tx%ORU)tXV+~JRdRRjaBf*xowi`R|6Kco zL-j+I_?gVI?oqE^JxjT$-f{Df`IYCv$JJlt5a!?W-Mje-!q*MwpAAv&G`YWkTL~Yi zobQcGTMh;ehL08BD6ULGL_P{BK6_x%?rBF^C7|$x-A^YZ==T)nk!tu9^(sd@5>YU##J+~(DI~Dbu60%+%b-8M4KbJTbTN^Zr90fH zW}d+}zPwIyu#Q=NqSuizWPWa=N@8wjc+^5^bfoU8q~gk9=@i9mlxF(Ny+&!#BP`$- z;NiJUO?_fV^f77!E5|5SyDt$E%O#j4W@`=0xHE=yhRxm@S8%-(BhIzBX9Z-uY4m1$ zT$<;@r z+#hy0+Mc_3pS507g>BQ>k|5qNtGMkelfrE0d2tfXd~Z|3n6Y8ZcA?w3O{b=qO99^- ztoV+ngqfTrz6;Z~3ti)eJ-BgPaGI&<(c3dRgJIg4R%qKM=&eu*p&erzl`m7@j2Jue zaVhR&wM`Sa!$)@;8RH+`;kV3DWUI?3d@cA>cNu=L(&f3!*f~4I_7|_#jutZL{;1qh zDWf5f0$$96sOd-4e0KOa9lum8P4J@6*rV3-#PQy-#I6H})J9LiD$HrEWhh9@R#F<<>UC6ZKCI8J@2=0ves_ODY0vxPWglv?q%E zXsHi-h=jcNy1+EC47q9cMkC&iN?5_A|YU}48(BeIZ6Bi;oh z99BG$(1Vm62jrjyV1A%OR8FS6IG5zMl@FczKvN7Wj2urbAmPJ;rjigPCbosz{W|C)UKR+yxlksG zr6jYvt+`_wf9(~d9)P5@=!jpi{$&uqT9RO*qz(Qt0>3I_poac3|KG!WZn}&0@k$M# z0i^cl03e2azPZCqhiIlhU0fmYYxo~i9I3;fqYGBM^{Xc93#Vv&4!h0Ke^vxv;ifzC zeOeU0_Snd&27#}5Sv*U_HwLLVjb^q44#;RU?4?!_R=V+f{_4!!;pW#l7c;Z&tLiGR zWCG97OcmaV2qKAjuDE2)k(Pq4Nw8O=PV~E6Bfw&PM_t5E(0&)702Yv6&ymK0+`bFM zTqVGwd`Dx%UQ>M+*zdU#LlO88bm_Z5!4(25)OWPtv>n@9t3FP8BID;#RS7IHoIZJA zib|%L3Y(Zb*CB`H8JB;3lEJ%cSjo1|r;7@!t}FS5@;N(se5X5uH@iawb(*vsHqj+b z`i=XQ>ujqjl|EhnkF&1;i?Z9=rlngzazq$Hq#32VhHfcAq`O19yN536P7$P)Zlp^< zO1iuM!Fc04?|;7Y9WJ?e=2^4$y4TwGUXL?-=DFRDQeo45ll9hHqW<#8Yps94?t97_ z`abCxK0J?+W%}%$@3~nd{2!0m7I=)j*52h2edDw{O1=8d`GDsEM+fXsUCP?m=R=(L zKro#L=XlnjKwzOjY(ClTe&;+Ju*19u0-tX8e5lSU-R>R;>3(X1%b@#FDm)a(lGobT z0lVFlHPZV~4|vur)9n^`*6u^S_{Qn;Sb7E{*Xpb#N2JcO3% zXbU`q_Ye`j)ma~DU4E}afL4PVb|^PxZRGh7^?fK5XT~|61SrJ&YDj*v+xT90JYa`% z4-qb1>iJNvRl3wYMBII?dKX6bBP}>+s2H!ckpa7nlr`M@PzXE;mg!OpJPG%qsJ_+N z|GQ9;?ngXGP!td0)4MFwyP93d@5>tkJM`xH(3=IG$a@$aUTc*pYn4{%UH2pEeL9*N zIGTc*?{Tnvb3u3J19WeGTevj4Jl(OcBYov;ytT$7vsrBcUeI5czUsN^ zEBgAZFEGE(IJ9VIb+)>!VHq)S zZKKx2gZW(}*3s216Ry`De7sI4>Iqo9d{bX37~YXx*6d6<392K$|28Xoq+Ky#h%f-e zP<`9DP=4&?YoW0%E-P`_)y!+6n;3Fep8Nj7InE9GGPSPU^So-b;$6brX-!4|PjSkq z$xGF%hRckF>vN2{F;5ZCq0TSLWcoX<)g+SpQ5-1%vUx2PjlH8h%w7lPtJc^LISG9& zG+RtZ6VcnYINbSfGBa*v6xluHdUV!qvW?6yJ{a}Wj!hngTb7P!#>(X{Pz+8FH#BUr zj&egbPr!RG)zq8%V!Miam^QddN0vYs@f%!Et9DiAB9@OW8|a@VJ2iOZS4zg7`ek3P zkIap#^BAtW&yWs@&=zmosk2KquN!;XR&=>*a7>rFzn;lpI0hB&vd&r0r%kanU@Nyj zrf6;3^FxMP0Uf6)gz@} zvO^Y1RX1-u;IvUrb#nTmsC!L*^qn_lZ12{QMsNN#85;x zvvFL$APlZrwVTgYhPTl+_o4!w1m(PXsD4rr(h=HnXVXH=tGZKTIgzkzjT`vq zyCZ9z(uO(kjH!xa_0?>{+xKKT+UT0+AIRn=ipxwrP2#I(YgbJ*ht0GvT;@xX9mhN_ z+&Den-?8yE)K5WliXv6c$_Mrbca@HwK6}v^{fd9K{B%=KeYEDPQOv@@l`}nH&8n^a zwBPHxp{&^=(u3S$FWJg!osFlYcjvW#8+7r$YA&CA_-tn;@TS!hv|x<2ps0A9OWLyE zqB6_#%y^5*sXB76cy`w$?s%F{wRkhHIGzb~w3w+mtjg!na`&|)eWIeovM*3&a<46_ z`}M_>ox@ezXc_CrP8PQc%e7 zJV$D6URDj&Pp@7#zb#R1$GWm>3vqM!)gji5)Md*ntUIfQy|(8fF7C6XT?n!48+ey>v+P$E#MJ||X$TiX z3x?GThJH2B&4-K@=r?;rLu(Rc6t_P1+(5O4fL9hk;}m7Bwv0QL(Ho%BORxTRvGRS+ zwog+xj_;KyPRyOU(Yq8B99PFhXWd9XG%U&9i3Pe(k?G4(TyO02ZVy;qMDW_Yz;dPK zqjA6XNEuxVA8EKEUO%AkrF6A9o!Z+-Pkv0#u_$F4G5N412epy$C`Ln<{%zJEZFT-i zKTKCrdTM2?h+8C6_Uz}~o*hs!5);2gE2~S^;1r*D17S(?kiv^#k3&9wt7F>n#GNB_ zMc|tZbOm)tl@&?(Q==q?R+ zf3mm69xdBqAo4pQ@<$qYSCr)$iSKV>Y8$9s=tJIYbBs+rQ}$CRXr$@{gh=~^&~`Gw z;8n7XIxq-@e~`y3&jea#Qua?lGWzkb5hL+g%INOZEDSl(t5z-##gCb9J_co5yRf+qHT6Hkr-AeHe-uer z`tcsYntCDaMz~G5?xuT&c3B`haGnz-7z~C2e?Al_( zJhV~>v6o6|k%Ot8aP-6u9urG)nc}U`O3vG(l0gc*u*)IX?NVnB#^Y3SAtPo~8|&bx zY$}&fI(zF>C^WcFaAlH^o|iI*Ib=;@F%dopoOll!lkh2TaG*i8ZoSNKIb^ed8)_j! z;!k}@S80jGx?OP7vqOmlgHjXk4n~`D-gv~HJscYT}mIxS;$jv9l;(k0?&yTcugN;v!4VfWG;h-T-m!b zgD}H6at7trDD)PZw62YaIRE3+)^HY-L_2*EdXaaf_t_K;WV5`-) zWCl6K6O!dwtFY_^fryxuJY&+59BBS^kK4^GvoFIBcAj?*TLFyph8;}5as^-m%k*0v z4jk(gFuHyRV{maD0l458fe~!fM52rlAB|gwS+%i51l;Fvrb@g*eSL}OBf^bbCOI}= zw3rwha0D$k7v_Drv)H?(+lRvee9Uk{kK|ZYVtF=Rlt<@euL=ydH~N}eeyw){be0zh z2GtJA6TqlvGWTq7PQu;?9=LFJ+$D8&fXA+s9KpEr%c!- zLq6CgLkQkYli*0}uH6uc$h*f=OaEl-jxt6hN&T*cOsf6B7LxlyiR<_iK5~p? zeWGkmvh2#NJ*D`lcWQ7)luvgq(*r?U7@$ThZEVqoNV5!$EjwAaLQIx)J-U-Gwv`g4 zgqC)w@@TNz??|FMJ0mIZk3D3Ng|3t3|2mwVC0BIH20&U1&u0tQ2t002xsZp)nG7wY zlue%f#;{=2KIunbbPn{E?X}RmuS3g3O($0I#6P+z412jL3>kNFvc!~YqITmY6dkES zj~Q9$wFuP)fCUX9Sfi^b?~PpY;806`>#!X_ob!;Ys};wrN}6&M=S<~enEI^nyRL~# z5ZM;A9Bh)G%*eLB;3)|N>F|n2@zkpfRi^J9*)$D5(2%7R`|$D`aA}6qM`V_?ELexT zb~BB4Vy~2UVi>v|z!`FhloZTv9My~84&@U9mO$FL3V(SnlE-s zSpdLBd!XoS|7FYacuDr6K!h#+hj8KNGTs228|dmA9WIU^&7l7mt*_bNb*jitUzY$XWb@lrU5 zV!{=9bzRL=Pt;T-;-#s`^Os>Ferl80OXD0qA`WE5V7v@vsBbnUJEiznhbNXe;obrJ zquKE9t#!-J&{2oW2iijhg0LT^;5^RSC9;u!B0)NaNya@{$tUN%7L1CYvWS->fca2N z7tnZ13urHocoKy5v@t>@A^4_Vy5wV6H_q8)&e96I#ddZCR_N1X+ zhoMLe*b}2=9*;YW<|%-x=n*@UxAAEK=t=&b%N!{*CZ|w}B(9A<`~#d0oRijleAp+l zkwv}j9x6apWidZw6`$!lVnEFz4IG!$FiqRjTs zLZ}GAefZWgjT^BAe6i;zNg@Z2qMxK|2=p^TK5f8=sKB#$SPKU^na~ssQ+b2~6~e@* zP{NU<>HPHlot_B@&5r zJPRB4D)j2dIKY`G%p*)KnxgR>k5ZsRHF3B1VKVI_R>$w*_ZcY!)Aa7 z0n)kMqASdNe!-_$T7>1bXHluCnzDU2GYVWG7%QI&3h_6BN~{5$Pf3x3FAPfwa`#fq z6~$}4N!KsI+Fy}`vN~;SQg{)3j@=_=Hff(n!7t}264nVu@qE-?F~sr)xG(6%(mTc; z04nER;^d5qj7VsmOFaAt#L+K8+_=I_Q6472p_)i}sXS-tGzE~3mrUR`KgA9jIl}-I z>b;-@o4=?mXdnanF+w>eA47c>cep_FxC=!T5#ca9A}=xNhrOYN^+)DKw<0>mkpEb(mE z24eV$L@_!|=_fDhH)GJ)v6FUZ0?1Z!y`aTvYlhV%x>7C*bdlC&LaC@_zj z+m~ugnsJZ4*lF$|T}845;=Cs^>edvo5s9LWV6=@bOnY9pFqran*y6t19wxTc!M}{a zUgD&b;M0`YY3#XioL`ABh3D*zu64IvVbH31+-^W3n8owmbW&!wb_?iqOx&#y;byE8 zVeZ!e^6@i+(wacO%yDj|xdZ5gPtu*_*SEkE$V#cPjJ;eH4sbCy(}UiyEaj_$IY3$IDo=w0i)M=Ih5Sl_Fi-L^r9ks_h}0 zL$ZZX?;-X5pwq6SO^T5O)rO{}EyMHc@BWWgK9#uF3Fk|}KK59{^>ZHDW}}KZp7V@- z(-JMI*MieVZKqG|wvOm`{sj&BAk+ll-3x(mnqUCm7c8MA zp2ERM0;Fbc>wstV`oV&+L3F)X-!^Q6=?=c}OB}?wi1Y|F@z1h-s)vW`Xm0Bg>Bj;* zRX!Y6jlvtM5yE%&D7y6<`s5TiSRq;~QF*z4Y2X2)Q$x|gR;E?pkLTbHb$7oSf*J)X zVS`PWFu!fs2qi8-Hvt^%lV2~ocz!hUihJM}m?qxuU<0E*4u@%-;A+DhXL{h`nPud~ z@t{4Bx2qSmD{~>&3-U3>d-9 zmZqCCh@FM)7WP^p1N40*)Adr2lYwsmj?H}d86S^@S0efyOqD5o``Yo8tOyzJsei}X ztOhjwj=&~SbblVNd?qQ~5S;`s$lLXRd0uM!6MW=k5p+);FMbBsD7D(T0U8EmfUw(NV|m)y32S+i96Ja7;!6tr`O=fnYiz1Az9+P!F-K)&ohsY_V_cTk z%dqg%;}x(Y*wPFc`PuTHyyS!{$8^{@?*`@JKUQ{`HeXsJ+fe1ZwGoJd$g!uMSdS&)TA-cy8vv%FG?z_p(efo+`) z5k#Wm=LIj&lS#)q1pomx@1(I~-(d?eD`Oe#sp?h4?Qc9ZBJ!ilnvN~Zih6w84Z?hs z)u1tEyFMq0?ieGjO8Z4p-X}z;8v%!Q>1r6Ej|o1k5lzz1p9=2-3W97GaLLjHVkNZVH-!wMdoj4LC3{5E-~{|5XK>g zf*Cg-BDdlzP;^t_9t{viDo0p>3?2MIg2}h%0E+1E=1iYXnP2*^wB8W9tuhC|H5!uT*TjH-al@ z(&Nm_+4fG-IXI0%;C1~WDkcz~{8R`wT%+#g-lkq=y}oyW79dEkx*$bAM$}E?i_l|X zKI(orpW*iJGbY1tYYEYIsFxGgjEF>J$k0@tgskF(_sH{DYrsZkw07tnTQU*MND&0h zAo?(itrI`WKrfd66qR8@h>cEDX*e>`(D;&;Nu8FS5IHM8qJx*Aay_S2w>u-TR{qoS zT5T16Q(vh6Va&m9)+40XA@Y)kFJFxb>NDf`W)NV90fDMpgnNg2nT`5xp!i2f3Q}D{ z)2=3MBRhI4_n6aTJr|LY&pb&Uft?%x`sSX!sqp#sNZ_%Nrx#*h% zB_EE^ho}MKAQXen#0loGCNppthyMbItqm{&A#zMbXw;);myc*v5Xe>sZ_g>}nbWzw zO}bBFoiAFl-PHmWIRIBnfcY&fG)F0L7`6Y^1iEi$uizAmJnHZ}8!rNWua~y-15}-c zt@+%EufOD6Z{A$PnDTA~u18q}t;>6cOh{6=o<$Q~A$Mb51trdG!Q9evuTWApj5@Wx z-)@wW2%|>O4|J7p*LwB%?Kj?T%pU*l-Q#dN2JSsL+&8eW(~BN>9vZ2E>o{isZmNfr z-1cfA$!SgpUXe|K(}D*QtNMKFm8SsiF<8nfZg(lvzQG3jPvUcJ+wbgiqK#Ry1E+nr zqrgGivU1BERY#U2`zU9Sv0A%KL^LZN}e0YEue1^nl6hq zA`Fqna&TYYa5+P}HivqgqNy)r(Tw;WV^fd%mSyFw%`xvEZ7aN;V%852O&9*@FoP<$ zXYQ(|qJ97NRY%P2jZsnoLY z%hZv2YNTOsW=s4n@c22&z{tK^{74l$e}=(l))l8E+YL!u|6+KZ~q2P|mt9e6hsP85-|+My3ogasD8+ zzT9T`zNpxd-D*PHWpu~)YN$o#&TwcWBlG#q25+EKO0&WF@lnTgpWew`ZQ{-Q`qCLw z8E#eO+LL~`dBW@#6tN&$L^|qIHk9lGnh)oGMabO6k)|KWq|#BGq%n zyMv+{PddythMW}68P8OitWD~o@*ofJ-!YdI^v`GV z1~Oe6Ybq{B4)w2Y9o3x1m0J618r?00zbY4xH`cY}pN%>}HyWz9Uu!lkx;h!Z<8im^ z$ZIAQzoFrDGZ>PxOqQ7=^sc~qL%5Xkn2FxCRyb)Z0E1_5^z}jDs_nt~*WJ2$xOFT|v+Surw# zQ5RNP47eX>D2oPReu7mStr)4Vi=b3d&Ji;O5Vr~{p{hT@kg5w-euC2Ks5Fp86~UBE ztU%6%HF?-_j%^@`#!4uviC30}2fayiRCAGWb}P?&oLvKX#k}Ba0CSEuWghZ6arNV; zS^OZ?a*7UK5)B|hgS)ngF7^Tr0D9T zdY+JT9&Zb$_-t189N@_Ic^;NTz)k1id2}lp)tqwF;xoDrPKCp7MTzLxKa0PPFEzwA zIMFIcJR)bNQ|PPifn7qWOR##pYSN8Sj_wxH*`A2gi9X0o8@A($Z0&-B#3VFU49B8t zLe$lCk~Zf-&*3(oWi+huimQ~9!R&E*Soe9jOdJDxo0V_>=glf)c!ZH>Hq-sUn-8ZyxT^X+RV=KIoP!P={M;5MYd&E@0=josiNR9vu0w!^zdC0i zlPnGV?%8FEfW#%`M=^6G?fCBbCfIDBypFSw?vn{D2}@c8!y1zg-vj+r$F%JVzvB4_ zViVR=eqE<$>|b1Dm8NA~tmRQNUAMZ=PHMa@N3iR%n5@~fVV#-=RiL+L-jH*$XsVeN zeh$B_DO7vR3qTK>&8@DioI2TtszQ~KfNQDQQpy*x&N4$>WY$-%HOzvuBhpNOdCx~(aS_# zDDz_tEGFkphg8_zS8_~;bd<0;{g@UZhoiTKcRKDS{vJ2TY|*H@y7MmB97`?yQ5fhv zBXp&6%$1QT3|t>s$hBGThL&$y?mi_6d27#W4y83PYzq75W`K{Z?)wOzVS*ei^#07# zsQ*PDVf!KC*EFYNH)EWPxPNtn&$v+jtm$q%PQNJa#jN%?+s4eXx!MjHi>)*V64N*R zdj1<^Sh2T5F5T}{7I#9EMEC@)ozX8JKW@65Z6RMH)R`H7Tcg$3TvA@t7wTwJn>t94 zp`!!+?8Mn!5+l<@N{=2_5)n)Q$|jcvRhs}G`W?p!ku(_w{GKMQADrBFKZauH}~wiV&rS* z;jM?`WV7ZxFMmzwz^<6;j$75n?(OC4)9PloqavNQ^5W2|X}8g`+vZe9rz;Ouo!Yq} zP^_F)!qMuc-pR%2R^Qpx9b@@IZ*+&5FNuv8f%n z{aOn6*caLo-`5rC6zejnq^;uHa+iI#b}?d+-6DOf#dp@U?O9KjBiFY|F)KPdTUs-u zd&gXZ!7o!IT-!pJKp1Pek>KcLHDABD;Bw8B*WcyldH&Ts$VXeWsm1T|QdjFfks7wcwfN*dqJ1WOM?0WZ5Ds zKKZD;h>b_KMJL~AD@?7EPOVNSFD0{=l-%@Nap{#~xfA?Xxs!$-!^7|6rWYrAA4r;a zJ$DxQw#9B&ZJa!d8YFqH_2M)*ktDpA?}jePH9c}MwbO{k;}O046h%nn2lr+XF1tt|h7zw^=>kEl13`?I`8%Rm zrhs!XkDYh$L!$Q&+=UhO;auo5K8c|AzhbpKOZxs&w--%X$XjL+jzqh45BNj-B)7j)oA6s4dJQYgE8 zPIL&u=kx}NVyNGg$RUw*4z=j_J?6kK6%uHo8in0f@~c;blBF@m27E*}zfiX8Qa;lB#xe3H8YV#_MoK%Gk>i6@l}j{NBQi^(L}!BA z))h7}0g6{4_2;o%6eXoL-Ds}%ds8dXR1l9}fGC{4sU)j|N$=PgE8U9dCi9c~5sltS z97|)oE2JJC%av488ihKI{cs|7n-rTIgGted38#BTB5V*_^{D5 zkZ{;(B1uqQwK;km20>wLICdY+2=nv`o{2mNN&gMibmB-Ai!vy@Cv>bwEa+}i* z7r9Uyr68z{dYMwHuTy>+8gBYN95BW0sOz0MdUvNp6-%zcn*wvs{bV&4Aj7GEUKM^FFOZ>uC(}px}{wt-ak*Z2*P;)PT zweGK4^y$aS<%mwdj0%s_e*?{lbvlaDp$bRuLPP_Y0wD~pssxZc?dgn<4>zbfP`S-S z46O_v>oFva1s+n{GvMm8-LtCNoFNv2?hlZ7CY2I@j(1Ma|H8jxN@P?24M$a_b667M z^h-%l&0l>a_2Dz3G7SYq`z3@8?0Z|6M17pOY)$~CdORLWcmet%5~gb0JJ9b zE!;oI$aT2$==w5@ibPEV6w!gRlWVYCVE&6)R8WIhmib={-^`MJGOJ4;9xu4c20%j7)A=Lq-}Trwu6Apw`5g&L z1EuMeY)9xP`zifj@NKo!{sX|;gHLz}5>*G#Tno+3J+L4CU}C3Pv(d5wh+Kb} zdis2%>OdLv@+UPEk9dEhMj9%!+ogm$-Leq>bYh$SB$8#$)7>fcYrH>JWk$I8v~yH= zf<7L&4=6wV@mkl7;0=x9a1RjL8bpyGGBDE!lAz3LbGSd62CH$i5uQ8Q2smu>FD;(*vw^6o6V}qJD>RI|}^agvVZmLYo3p zg%V>fWHOEL$MP?n{xi%H4S#l(&Bb>tXgh^s203qF4-gVB^X^Zo<7FcL z6?OO!zt|fV5VScU07;y~Mg9umcRQ;Y0`i~IyfcUE21--~=NjM@n!7b~$9Hs#Krb7V zPoV2@2$*F~*$o8$vi>Yz>eHBRq~?o<3LqSPJnHH8k*Z*25FdX@5>C-*OW zh^%$^vvE-Vb(LUkh0>-VR|UtI?;lUDF~;g2>|6u%I z@Cf~$X&|&~XWWWFWDurBBtezu8)=2mb+U?*9%tmNnzodby8KA)kf8?{A1{+rg>td` z@&|im#=8G0Kk1zB#??Vp!GILn9$;L&OcvDReg>2xxAbEZ%?~HL{i-AZDOA6VKNr`9 z2ylQe$J|)rWwt^^0;&Hs3 zzOa6*r}$=#;50iRMJz@}NdtuOdxndjRze$EgQIVii2x}4w=V)=;mD8cEAb(5l2sJ6 z@&0jv&CC3g#caszv?)mXqY_mn;6A9qJM`7hK1fVSlCo!NEDyry&WqL`g>ql`SG(4w z3^qS3Km7{&o1^4~civA*1@!#5F#dzz^x2OZk9wICOM+xfrrDK2bPE8ZAFGC41O!?D zSpANN-y%YDpJ1az{vmyu2#5gGtpLJ!RiMTY(}N>J!OSmoN1zPR3;wJnN6Z; z%;hC$-L9JUY4tfZ_fu0+#e&1EG$G8g8fBdCE47Z?5*Vl*Xilmz_M4md4q;6*9#t1j zBy+Kp;lvh)7RL!+pNlJZr7_UBfjK2Gh!GFM2n@p0S%;E{KlF;lB^=<}zQ|6-Lq}Ki z6+2K&kJHbn=km{B^t^Oq4BE`^+iFMEbNAKIB7)L%eQ4Ui05~9FU1?dwymbCog`mFF)0*_Lv*eKse zr6@`JZx1;hD~0P9iL#F8cSGZv8DxXmP&gBZHSE630yvEE2b4n%i=_6*Hz$#iF&>(K zdrwNHK%LadSt&1+N8H1%1$n6P_PIifm`Wy?1%)$JejpePsZcPJHctazN&Br6)S^gh zKL4IHO`bZ@6e-UwVHm(ci~m_UR2MobXmhfFUU`H1aUfn1rzkWYEq;@7=qsp&Z*x)t z)j!-dJ{zxSMRDMxpVg6{6o+jgL7j5KeE3+of=Yp+ln^G3vR%~Id$$kDp&C#(*&l8) zKit|C2PzQWm7~O)wktls5+!Lh8+L5bY0QuHx%`Q%(Oh?_8gAo5*1dNoc zFG82}w>aGEm}u0BthCfmz&-d0F`0_JPDyiLpoPzcpvU4`2IA5^g2dqD>W4`6$kRm& z#VO+2zR28eNBKww{)ONfBehg6B*SYx;QN#xDrcg+R1QKuFL6$UzXl}cVXl6tRFC2> zPv*>c_c`Pm;b+k?qIBvC;F^yRhB!qJ<9>|a^{DwZjlyf`ph{Mb>>- zw!ZuF_Y`4%elG$h$ki96n_g1c;2;8)kQ2{Ykq65{VxBTmi~pLi&wgAr zawxBa$)aO~={Oa@Wgj7=af-Jc$0W&60z*b#&_Hbk7YSEuJNEm!AARmh5aipoAhgHGLt^lLW&E2S$+0$AKV}1(E)yfQ zT<(f)Tl(rxa+Jr!&?p|#QZs>j2oqxRf2E`=)C2}YQD;LMX{mLz!0F(g&jGwYX2~QK zj|OsY2?(tcf^tde4;IqXxlmF^DjsG*+-&Gvpvy|@+0O-1+?>A>4B-Lygeo3(`$nG2B-<+^W zP8sgkeeS0mKYv_0M2I4GE`EsAUtG*HaLoge{y$Eqbf5EOyd~(~L40U)<+Z@xe{e{J z%$+a@0tcoGQbg^@#fNqnpMf78CRZRw1PJ+GTtc8Og%CLNsrSE1kp$6g@3XbHM3NEU7GOD%BppE>O)g@}N0a`8p!I+heel)c5sA@Ag}a{R#HtQbWbYU-jKHYOGy_j z0q%%~(8fq)fT^JCL(YfFIa01&0wo+G@+5aj3_K=by4p1OhlI%9b=r6_c5B-GzWpE zPM;H$A%yw;{bMnop+sWJ93=m-AR*Hbw8BgwXwm(tpcNtskNU$Pi`wIU2Xd;KNk2Hd2Q31YT zm3S%prphK$mGL+yYEZu5jsMaHJV`FpE=zlWlOzw9b8nSpJf@0GQpJheMg9j zHM3pf%3xV2TWg(;I&EzxRwgU0wTm)5Mp6hf5W*acPWNJCt&Md?=VGf56kf$o9SSWi z)oYxjp3G1&?WCe==SvPf73-`I!n>N;z|}*AKHJs;48@l!CjG}|$||{SVUWIj`aTpT z4vE()`Kh+?3!gmVa*D6t0t3I+c7es?7-%Bmq8qqGqu3lo9}3lv(24XeYMJ1(N;KI! zGmLyP7s_y7+*0yL@q=1^}4^l z#mefmt*AwObak@B3TtOccv9`TYq7f8r2bWEW3!t^8K}6&e3ZB9Vr4gyf^c+!!Z77D zcX7ki){}I$!I96i!Od;^*8ME?S$wGF^ijQg#zI3IQ%4`$*{;b%`2J}$X?oRiOvCD^ zIXB!%O_+A@-c>VW-utVoT@!8d%ZH>tcFs4BPx}tkb_R-9?Jt!);pgx%Z@=EyIE6NJ zFnN-fm0WF2u5LzpI4)e1-0yi=^GkzDiD6*+v0!23rQi|pVUUrLVFdia@-Tn-fo`tD zIGZy$S=pM|85mC6t?y>K4H9W@H36le4)utqKR3=z zC3`IoPq?WZLYEm2<$0$@&^g!olW@fQ&iJLsQwv65S0Q}9eBs%UBJZY;BAx(Drdk1WUOkF%+QaJhw^UE*KgCL^=)p&B5^aJN zq`&6H1WMw|wBfROyZMov#1pX&sf+FDt0pKDQHUr+V0@WGEN0hWB5QsAa3zeSs96H8 z+OD4iG2?S!_=+Oprt`~83%g9~rjq^W-NK7kb!p!PJ>Z2KaIRnDIW|$DSCqc;&bmOI z>wKOvR%VTMYj|Ap;LMwG#Rcur80i)$mF>2WsLsg8XS|@E<(7Kr(;nVB0`()V+f1+{ zQbz@2 zAmV!s5_M3&TQI5^@a5Cpctv6;zD_{hlH1||zE^wMi3n7~cbF5jS2~TqK z!}pa<&xUCqJ^#4Dp;chGUH`dwJEx@$sXPIk4!`=)XQ6ua+tvuRrBr&@QhIpp)rY%L z*oehqp2zN?F0;O^mac|r6B|?-0W?z8>c@+lSsyj=h2XRaf;G95?zlqrp%F%o4TwDs zX5a6>dv7dZoj$0OSGl3;PnfE-M|79W#x8T2!g=g^eo7U4nq46U&A8EB>ZX$C- zFGl7&uQrlABhM*{E8p7@IQaZNHTqKq|IcplvEfCZ`(T%+E4DvmCu!(ZaIwOCw+Dd$A}yV0PK?afpLq2}27Gkc#(aZ6Rl&VVgyTYhh4_&B3z~)y zOH`jbQHeZtoI>JfbWZD3-g(r+Y~4JPJy-?krw7;)X-U*)n9wZ(GhsAKH%?=;U1c5O z8j6Y7O9yhEsay5vcbKDn9PJMM=7kz@0}4E6D55>MnPNx>Pne zgKGM$-L=coQ{$yRUxKt4CeJ2Uhre7d3)Tc zU_;0G`K_zAN6_*>0@%Ry3Y+J0Hr5)iB-UuRb$vK8HgMS8pdlE}GrDQrMun4`x2c5Z zvd_WADS&A>GWAJggXTPvq4U)-QOWY0WR~t~SI==RR^LF4n_ZlCCSlxeeDRB*RO@Kz zt3e$L-<7(lJ5#@6W_r;xo$|hkTeUh{yAKC@@JvDCDcf-e%-huP zCuJv#@e!RS4OCjXO?2|Q^aH~ZKKGrjAB~(ocB_nWb=J6;oy0Tr4L7cL0)P4B1^YhZ2!Pk7}IIWJW({m0j zvcU@E-Rpdn)WOG^(US*j`n{8@4)x!QS5g;&O#wJ1svBwXQneeEr7Lg=YpWw?%x=e) zH!4-K1gkL_ zVSEo7rpE>&DfV7z%-lvNQ4NuGkKj>w-kQEKuqqaDZNcrKmyQoTU#!2r$a!ny;%M_S z+b`!)4qCeO#Wt0?-yTZGR<}oH+Z^TWXS)h;#1PPqCqC8P$tuo?u%!-6V4rf6&bZUN zU>6Mefp<43W5ru97h zXURraX6X;LkG2n2u9qH^*HK(mlJN3!FX)^J4?E!X%yGZ2?VTP;@z`F_5?z#{>s2*& zIw0$w9mkp|Kbm^hvHQ)lV(5DSx3ncslg1@t^_&c|i^HYS_|ZUM=xA}T9aqPV;D=V< zqCG5D#|LSKX33a|7v66@KJ{X;AHok@3q0ljGKgh=2=D0esRzsc2;S1;T>{1W+5@Bu zSSEhveyp%V_~q+QRQ${XSpA3aN7r6{(Zph2H0vmCJ{d5y$f$lknO?NCs9`?YFmw{A z5T9HxI%CvSpL`hlAk-Wm6O25L#J|hY{- zknLtxGTl`PS-0K>gf6+qv2N|V*mO}pk?SAicF(n4|M9%;=BF|5LikZe=?3PV)@rnWI`G8*cXlPh zJjTE4+y3Rm;hGt#2#{GACOFyKV&V`l!f7-qOn>O$3nKilAf7I^XfXRbT z#MI^T`gaFj2T1?$oVU#Xf#6x9x_9B<_0R186FH_I&q1gB{P!pSUj%wb4VcM3|Ca*2 z{oMfRuK!k`m-zweD9V2;(2IW7YJach`(Fw4;?3SG^|Q2`Rl@c|G}{Zr&(}Ws9)j#G zfD|3*FRD15CKq7!xy%IU$<%>=yYplwN9C2YIaOV$ZH3U%>d`N9Oe?2u?l+#nRb(JRsk zI|;4xV3}e9UUe9^B<>Kl-RRZpgq?+6c(8n90$z6nwIm)83g7DW>V#c{a(c3?GXZZp z3R)6R2-|M;W^}@?LR~yr_L+dU9o;R77lguhdYd|7H=%W&EayzXyN>mi#2do4JH1Pt zu)EL;&q^2o2&Ns?YYG-y3Pul2paeFE7p4*!0D^6&_nJb)?t{@I5h#HVa)+tJ27ut& z!Cq4+*ix{1PX$U4gPLF}i2xw@c2ln@4D3EwJ#K-L2SGP5l>h(;p*_TF3I|&XPESgp z1SN_@|8Nm96cLIHC6svx%RE#nL}Z?AsmxPs^Oz|~ zDO08;Wu9lYA;TtwBy4kNlWCi0o8Q`WSLfXKeZJ?M-}AhF&+~eof0lK9KG*v*uWPN( z-rKqq31C?=+0?<+cm>+b!laEBz9?>rHUbzzCYv@Gi&tRGEKJt;#23X+p-2d8lgU0C zEQw$6kXiUdW2P@kh@y=UHYk%#AMA-=V8<+cva!_{B}$=41e=w~W(cmvFK}TNCU2ba zMM+Y$5y5t3vYCRh_ys=9!W4}pekfTA#p5ti+3fSdlE(^ynT1a^a`>UHQ?wn2(aUDD z1bZGUc+MN9ZR3m|%7CJc6y`3Q%^Qp*D0t5-e5R4aA7w(JNCpd)&E^l5BrNysJ0;DIKZ$w;VwGQql+FgLv^KB{PYfs2cHN#d|yaFX~afrXtpDinCP*)x&*5YnHX#UhVF^mrHYe#otU_{MNZCC zIL|zKvYNDE^SeDd-xJ-PTD&A8`;EJns6~t|%e7c?Vpw3HX`1cna9VR-e_Icc5H}1G&OyMWj{j(@rP@u9;5Th26L;y8@JTt?NqYe)(3<2d{l} zcpBfHM%QN}ESzFUI%oHx$SX-b$#$vlnak_rs}hLIyKyUTN$<2uEts(nCXHn}c&M~A zH0))Gcpt?zxMynba=wQ46K>G>FB)9oD+ix_4JkSfXhRJy)`R59^}PEZ8$uG^TB|Uu zj-RJs9ubG#i?fg^em<`(g}sSq`q4_@2QS6&7K-F(y|bwB(9rFSjvL=2 z8+}vj_-t{^#FZ/(zRYTS8wtXg?=k!n#?kI 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

hAp>#3Q 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

j5Cr2a!yN37g$p!KYNDOnJQ`ro(xaz8tKJ$u~K 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�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%0A8Ux<}8-gG!l)Q@u{tzOIF?m0TO;{0=*7=Z-nO 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

ufxKmJ4Dbz_`7 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


o<%xmBOdMRrt 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�r&(DzP_GhJ8t- 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

I4BZ{xyw?&tC+fFt4R0DgOqiZd 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 From cf779d144fb66e126b1782c8a5eed8980142c6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Fri, 14 Feb 2020 11:14:30 +0100 Subject: [PATCH 28/37] Cleanup and fixtures of static resources (#170) * Compatibility with core's PR 1537 * Remove unused icons/images * Removal of stale js and css --- .../skins/bika_health/bika_health.css.dtml | 2 - bika/health/static/images/lifethreat.png | Bin 368 -> 0 bytes bika/health/static/images/lifethreat_big.png | Bin 691 -> 0 bytes bika/health/static/images/supplyorder.png | Bin 597 -> 0 bytes bika/health/static/images/supplyorder_big.png | Bin 1209 -> 0 bytes bika/health/static/js/bika.health.site.js | 2 - bika/health/upgrade/v01_02_003.py | 49 +++++++++++++++++- 7 files changed, 48 insertions(+), 5 deletions(-) delete mode 100644 bika/health/static/images/lifethreat.png delete mode 100644 bika/health/static/images/lifethreat_big.png delete mode 100644 bika/health/static/images/supplyorder.png delete mode 100644 bika/health/static/images/supplyorder_big.png diff --git a/bika/health/skins/bika_health/bika_health.css.dtml b/bika/health/skins/bika_health/bika_health.css.dtml index cb4ab257..53d4d645 100644 --- a/bika/health/skins/bika_health/bika_health.css.dtml +++ b/bika/health/skins/bika_health/bika_health.css.dtml @@ -1,5 +1,4 @@ /**/ -/**/ /**/ */ @@ -95,4 +94,3 @@ div.cg-DivItem { /* */ /* */ -/* */ diff --git a/bika/health/static/images/lifethreat.png b/bika/health/static/images/lifethreat.png deleted file mode 100644 index e34e4256e2b811496ea67597bfcf154821e70b6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwKPP)YFc5t*v&tFj-JBpRLA}Zu;u8p@ZNcX-bSrWL z`3~NM5N&hMR9zTIJcrGjz5Yhr4I8TDdpKYw|CC%rIhFS z|CsZod5Lyemd(^)eBa3lA#5{itw||mSc#NUX00{Uw(V|mN-2Gw=O5$y)HKcHKTR>0 z%jLy;F9D!!+Z~8#m}oiY_Rl(xF$q8-qG2`lIRrCzec$tvgsQ6E0idqyH}C!HTmm!q z&|2H2SwEWsfTXpynK8x+A#SUw3vn~XSO9-qB;X%bc`EYjWBQJ@=llsv*zOXJ5_BB^ O0000+@$9k4*(~o2 zE*;{Z;0%Q&Ym_z6)w5XtQA^-qQ(+h@ST#n-`K@diwC>n&2McTdp3EQ^ovMk?X zjGqDER~o?>Kg+UwYuk2xZ{i>bPE=LxBZQV|i8loyv{Y5K9|Xb4PUMc`oUtr>zc2Bo zuq=D;IL=ur^67MXUMiIy4@DkJsZ@HLPN(NvPks#Ybt5)CQCPq8X0!RtwrzHsmw28Z zSF6<@>tplzyfPk-`E6@imi<1NOq!>sr$1jPR8{S#J;`u5{J6RCYAn_I71v+bwq4&P z+TUvcLTDL3Q3?P+*Y(RNiqJOq9STttAzjxm0RWKadBt+Me32D-jKN@V;d$OC$}kKu z3`3l?0bv+o!!Sh3G|g7l zIiJrfNk1OIpMa~?YAj{!Fl%y*aVUzSK@mb0k|f<_ZGa?6cZ84y1puIF+7&`5%8DEz6lt1v1+YrT zjYi|4)9GAiWk9FXxo$KX4*>sDNd}NlQThtGmgVc7$gMG1kBQt`vvnN1IW26P5aU?w Z`ENv8GK=cii$DMX002ovPDHLkV1iMIHYWf8 diff --git a/bika/health/static/images/supplyorder.png b/bika/health/static/images/supplyorder.png deleted file mode 100644 index d9ee39567c4c169a9065c8c94a870cccedc952c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 597 zcmV-b0;>IqP)vTF# zuqOyY8WXKnt2-8p<+mUR>7DrDaQH(g6#A(57=}4ZCX;2HClZMY!!T!C!;MDc831VA zZuby-?RNX=O`=U*+tjYKUayUQzyBf{jaIRzD2jom>2rs}aapNU;-VYWUd}uP6(545#?RNi2r_=B7 zuq?|SilUag7TE3fpNqxfZZ4O5Ls8UHmSqn(ozBZ(F!(u}&A!EmyM}S3QmGO`$P@?! zE;x=mx!r6wd$KGac)i~5tyb&Pd_FI#s(S4{^coBXk8C#EFSFT<>h*eLtAXeFBZ45% j|0n=JBM1WVJb&~TSr-Dkvkkel00000NkvXXu0mjf{cI1m diff --git a/bika/health/static/images/supplyorder_big.png b/bika/health/static/images/supplyorder_big.png deleted file mode 100644 index 99008593581f3efcef4cee1210c4014c6010c572..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1209 zcmV;q1V;ObP)Z0B zMxiJa1gYT1v}!Fwt!N2C$AD0ddCfcai z+mGJkBh8J`u|pSZIGnxqty#jy@WHe2$I2;ZIZX07`WA9#7oEXQw z5kmMJI-PE!rKRPI)zwuxPy(8!S9Lnw#I4`J{~oVQBYM5wtk>(!Mx*im#r@mT2(JbJ z;N;{)5E2qn0RR+5odW14zE`4=?d|Q?$SG=TYrnbiH3onnkaJ~aUavO;fJURSG&VMN1Ax(JygxTL_XYr%&1U_LyDKd%9RA7i$bCJ)0eZiw--s)QmJ&G ztR)i33m?udUmf1=hKGmm9UL6o0f6%IagsR(apvdev&s6RMpP=5-5)1t%+Ahgz|F9@xcGZM9yj-YX=H6}EfIdS5j09lO1>ir zCMPHF`r~*!o;y;hbPoWVot^!&uRlFK{Wk!tR4Uy&I5-Fmy12z+DI~>na&ms+;|&Z9 zR1==TVEDw>-`d*xIq`Gc;80jtXd!_U6BBp&czJnwj{&d(fq>zz{1TRzmuZTk7yvBC zy&5AUBc-IcPN(~kkH?MWN{w(n763anHT8DD;zvhEA!%u8PsyolHrwlbT#ZIEi*t?e zCcZdME`}dHJv|=~a!pN5KOfIzGF1|uKk@mZsHo@%!slWyfdYX2{e4MFO3LqBTU(0I z(9pk@mX^|zlartMlHG2%M5$E%y1u@i2mmUT>WNaRT=M0`#l>xOcXxjX01FEX8Ch9b zHiltB5)u-gEiNvqq*CdNO95?dZSADX=H}*ye5Yw@YI=wue?t2D`rapT4Gj%nl6@}6 zIh;G*|8~fblaz&DH%Ve@00IXOn_S)_C3{+KBJ@O4|Z*TvMG@#XL zCvRGuSY2J+*CbzmfB)GlT&vYiVsmpdntPtl0tN>M-y;Dcktk^4@fk%?%=Gm1TO?5K= diff --git a/bika/health/static/js/bika.health.site.js b/bika/health/static/js/bika.health.site.js index ce0cafc4..6ee9e6ed 100644 --- a/bika/health/static/js/bika.health.site.js +++ b/bika/health/static/js/bika.health.site.js @@ -18,7 +18,5 @@ function HealthSiteView() { $("img[src$='bika.lims.images/client_big.png']").attr('src', window.portal_url + "/++resource++bika.health.images/client_big.png"); $("img[src$='bika.lims.images/doctor.png']").attr('src', window.portal_url + "/++resource++bika.health.images/doctor.png"); $("img[src$='bika.lims.images/doctor_big.png']").attr('src', window.portal_url + "/++resource++bika.health.images/doctor_big.png"); - $("img[src$='bika.lims.images/supplyorder.png']").attr('src', window.portal_url + "/++resource++bika.health.images/supplyorder.png"); - $("img[src$='bika.lims.images/supplyorder_big.png']").attr('src', window.portal_url + "/++resource++bika.health.images/supplyorder_big.png"); } } diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 17b4de39..8661e2e1 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -31,6 +31,27 @@ version = '1.2.3' profile = 'profile-{0}:default'.format(PROJECTNAME) +# List of javascripts to unregister +JAVASCRIPTS_TO_REMOVE = [ + "++resource++bika.health.js/bika.health.analysisrequest.add.js", + "++resource++bika.health.js/bika.health.doctor.js", + "++resource++bika.health.js/bika.health.analysisrequest.ar_add_health_standard.js", + "++resource++bika.health.js/utils.js", + "++resource++bika.health.js/doctor.js", + "++resource++bika.health.js/client.js", + "++resource++bika.health.js/bika.health.analysisrequest_add.js", + "++resource++bika.health.js/bika.health.patient_edit.js", + "++resource++bika.health.js/bika.health.batch_view.js", + "++resource++bika.health.js/bika.health.batch_edit.js", + "++resource++bika.health.js/bika.health.bikasetup_edit.js", + "++resource++bika.health.js/bika.health.client_edit.js", +] + +# List of css to unregister +CSS_TO_REMOVE = [ + "bika_health_standard_analysis_request.css", +] + @upgradestep(PROJECTNAME, version) def upgrade(tool): @@ -62,7 +83,13 @@ def upgrade(tool): # Allow Patient content type inside Client # Note: this should always be run if core's typestool is reimported allow_patients_inside_clients(portal) - + + # Remove stale javascripts + remove_stale_javascripts(portal) + + # Remove stale css + remove_stale_css(portal) + logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True @@ -86,3 +113,23 @@ def update_sample_panic_alert_field(portal): sample.setPanicEmailAlertSent(True) logger.info("Updating Sample's PanicEmailAlertSent field [DONE]") + + +def remove_stale_javascripts(portal): + """Removes stale javascripts + """ + logger.info("Removing stale javascripts ...") + for js in JAVASCRIPTS_TO_REMOVE: + logger.info("Unregistering JS %s" % js) + portal.portal_javascripts.unregisterResource(js) + + logger.info("Removing stale javascripts [DONE]") + + +def remove_stale_css(portal): + """Removes stale CSS + """ + logger.info("Removing stale css ...") + for css in CSS_TO_REMOVE: + logger.info("Unregistering CSS %s" % css) + portal.portal_css.unregisterResource(css) From 9924f887a9112b78907f08fd564ab9ef46612780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Fri, 14 Feb 2020 11:38:49 +0100 Subject: [PATCH 29/37] Compatibility with core's P1542 --- bika/health/monkeys/macrowidget.py | 2 - .../bika_health_widgets/referencewidget.pt | 214 ------------------ 2 files changed, 216 deletions(-) delete mode 100644 bika/health/skins/bika_health/bika_health_widgets/referencewidget.pt diff --git a/bika/health/monkeys/macrowidget.py b/bika/health/monkeys/macrowidget.py index 4c93f774..ab47f4fa 100644 --- a/bika/health/monkeys/macrowidget.py +++ b/bika/health/monkeys/macrowidget.py @@ -30,8 +30,6 @@ def __call__(self, mode, instance, context=None): # before the generic macro, this lets other projects # create more partial widgets macro = getattr(self, 'macro_%s' % mode, self.macro) - if macro == "bika_widgets/referencewidget": - macro = "bika_health_widgets/referencewidget" # Now split the macro into optional parts using '|' # if the first part doesn't exist, the search continues diff --git a/bika/health/skins/bika_health/bika_health_widgets/referencewidget.pt b/bika/health/skins/bika_health/bika_health_widgets/referencewidget.pt deleted file mode 100644 index 2635b189..00000000 --- a/bika/health/skins/bika_health/bika_health_widgets/referencewidget.pt +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - reference - - - - - -

- - - - - - - - - -
- -
- - -
-
-
- - - - - - - - - Add - - - - - Edit - - - - - -
-
-
- - - - -
- -
- -
-
-
- - - -
-
- -
-
-
-
- - - - From 68ec6c9cca3fb7c68d248ce67cff24702bbc63b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Fri, 14 Feb 2020 11:50:51 +0100 Subject: [PATCH 30/37] Fix sporadical errors when contacts do not have a valid email address --- CHANGES.rst | 2 ++ bika/health/upgrade/v01_02_003.py | 22 +++++++++++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 168b8084..0180688d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,9 +17,11 @@ Changelog **Removed** +- #170 Removal of stale javascripts and css **Fixed** +- #172 Fix sporadical errors when contacts do not have a valid email address - #168 Cannot create Patient inside Client (content type not allowed) - #162 Unable to search by Client Patient ID in Sample Add form - #159 Ensure `Client` contents allow to hold `Patient` types diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 8661e2e1..13d6bec3 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -17,7 +17,7 @@ # # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. - +from bika.health import CATALOG_PATIENTS from bika.health import api from bika.health import DEFAULT_PROFILE_ID from bika.health import logger @@ -27,6 +27,7 @@ from bika.lims.catalog import CATALOG_ANALYSIS_REQUEST_LISTING from bika.lims.upgrade import upgradestep from bika.lims.upgrade.utils import UpgradeUtils +from bika.lims.upgrade.v01_03_003 import fix_email_address version = '1.2.3' profile = 'profile-{0}:default'.format(PROJECTNAME) @@ -90,6 +91,10 @@ def upgrade(tool): # Remove stale css remove_stale_css(portal) + # Fix email addresses + # https://github.com/senaite/senaite.health/pulls/172 + fix_health_email_addresses(portal) + logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True @@ -133,3 +138,18 @@ def remove_stale_css(portal): for css in CSS_TO_REMOVE: logger.info("Unregistering CSS %s" % css) portal.portal_css.unregisterResource(css) + + +def fix_health_email_addresses(portal): + """Validates the email address for portal types that inherit from Person. + The field did not have an email validator, causing some views to fail when + rendering the value while expecting a valid email address format + """ + # Fix email address for portal types from portal_catalog + portal_types = ["VaccinationCenterContact", "Doctor"] + fix_email_address(portal, portal_types=portal_types) + + # Fix email address for portal types from other catalogs + portal_types = ["Patient"] + fix_email_address(portal, portal_types=portal_types, + catalog_id=CATALOG_PATIENTS) From d0ebcaadb0fbfaaa46d3d116e1975cf6473cda0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Sun, 16 Feb 2020 21:29:00 +0100 Subject: [PATCH 31/37] Install senaite.panic add-on in upgrade 1.3.2 --- bika/health/upgrade/v01_02_003.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 8661e2e1..0d9666f8 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -71,6 +71,9 @@ def upgrade(tool): # -------- ADD YOUR STUFF BELOW -------- setup.runImportStepFromProfile(DEFAULT_PROFILE_ID, "skins") setup.runImportStepFromProfile(DEFAULT_PROFILE_ID, "jsregistry") + + # Install senaite.panic add-on if not yet installed + install_senaite_panic(portal) # Setup template text for panic level alert emails # https://github.com/senaite/senaite.health/pull/161 @@ -133,3 +136,18 @@ def remove_stale_css(portal): for css in CSS_TO_REMOVE: logger.info("Unregistering CSS %s" % css) portal.portal_css.unregisterResource(css) + + +def install_senaite_panic(portal): + """Install the senaite.panic addon + """ + qi = api.get_tool("portal_quickinstaller") + profile = "senaite.panic" + if profile not in qi.listInstallableProfiles(): + logger.error("Profile '{}' not found. Forgot to run buildout?" + .format(profile)) + return + if qi.isProductInstalled(profile): + logger.info("'{}' is installed".format(profile)) + return + qi.installProduct(profile) From 6c6dd8c99e816fedd6e45ce44885076a4a090865 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Mon, 17 Feb 2020 14:10:07 +0100 Subject: [PATCH 32/37] Pinned zipp (#174) --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index a3c00c7e..aef565aa 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,10 @@ "senaite.lims>=1.3.1", "senaite.lims<2.0.0", "senaite.panic", + # Python 2.7 compatibility + # + # https://pypi.org/project/zipp + "zipp<2.0.0", ], extras_require={ 'test': [ From 94a892fe2573f2e81def28a05b0e067c50144c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Tue, 18 Feb 2020 10:34:49 +0100 Subject: [PATCH 33/37] Fix traceback when calling getBatches from Patient --- bika/health/content/patient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bika/health/content/patient.py b/bika/health/content/patient.py index 040f1d70..cb20fe0b 100644 --- a/bika/health/content/patient.py +++ b/bika/health/content/patient.py @@ -1132,7 +1132,7 @@ def getBatches(self, full_objects=False): query = dict(portal_type="Batch", getPatientUID=api.get_uid(self)) batches = api.search(query, BIKA_CATALOG) if full_objects: - batches = map(api.get_object_by_uid, batches) + return map(api.get_object, batches) return batches def SearchableText(self): From 2088e4b7c948e02b6125b9f127f27413dc105274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Tue, 7 Apr 2020 15:57:22 +0200 Subject: [PATCH 34/37] Patient historic results are not displayed (#181) * Patient historic results are not displayed * Cleanup * Use well-formed dates in the historic results table * Small styling * Review and cleanup historic results js * Do not display actions menu (top-right) in historic results view * Imports cleanup * Display analyses verified or published only * Display the units next to the result * Support for unbalanced datasets * Place the legend for series correctly when unbalanced * Better visualization for small screens --- CHANGES.rst | 1 + .../health/browser/patient/historicresults.pt | 360 ++++++------------ .../health/browser/patient/historicresults.py | 135 +++---- .../static/js/bika.health.historicresults.js | 218 +++++++++++ 4 files changed, 414 insertions(+), 300 deletions(-) create mode 100644 bika/health/static/js/bika.health.historicresults.js diff --git a/CHANGES.rst b/CHANGES.rst index 0180688d..36f536ee 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,6 +21,7 @@ Changelog **Fixed** +- #181 Patient historic results are not displayed - #172 Fix sporadical errors when contacts do not have a valid email address - #168 Cannot create Patient inside Client (content type not allowed) - #162 Unable to search by Client Patient ID in Sample Add form diff --git a/bika/health/browser/patient/historicresults.pt b/bika/health/browser/patient/historicresults.pt index 40908a06..973b4a86 100644 --- a/bika/health/browser/patient/historicresults.pt +++ b/bika/health/browser/patient/historicresults.pt @@ -5,11 +5,21 @@ metal:use-macro="here/main_template/macros/master" i18n:domain="senaite.health"> - - + + - .x.axis path { - display: none; - } - - .line { - fill: none; - stroke: steelblue; - stroke-width: 1.5px; - } - .chart-container { - border: 1px solid #CDCDCD; - margin: 10px 0; - border-radius: 5px; - } - .chart-options { - padding:10px; - background: #DDDDDD; - } - - - - - + -

- - -

+

+ + +

- -
- + +
+
-
-
- - -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TestUnitsRange
-   - - - - - - - -
+ + +
+
+ + +
+
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Test + +
+
+ + :  + + + + + + + + + +
-
-
-
No historic results found
-
+
+
+
No historic results found
+
- + - + diff --git a/bika/health/browser/patient/historicresults.py b/bika/health/browser/patient/historicresults.py index ab8ac457..979cc38b 100644 --- a/bika/health/browser/patient/historicresults.py +++ b/bika/health/browser/patient/historicresults.py @@ -18,20 +18,26 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. -from Products.CMFCore.utils import getToolByName +import itertools +import json +from datetime import datetime + +from Products.ATContentTypes.utils import DT2dt from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile -from bika.lims.browser import BrowserView + from bika.health import bikaMessageFactory as _ -from zope.interface import implements -from plone.app.layout.globals.interfaces import IViewView -from Products.CMFPlone.i18nl10n import ulocalized_time -import plone -import json +from bika.lims import api +from bika.lims import to_utf8 +from bika.lims.api import to_date +from bika.lims.api.analysis import get_formatted_interval +from bika.lims.browser import BrowserView +from bika.lims.catalog import CATALOG_ANALYSIS_REQUEST_LISTING +from bika.lims.utils import format_supsub class HistoricResultsView(BrowserView): - implements(IViewView) - + """Historic Results View + """ template = ViewPageTemplateFile("historicresults.pt") def __init__(self, context, request): @@ -88,76 +94,74 @@ def get_historicresults(patient): rows = {} dates = [] - uid = patient.UID() - states = ['verified', 'published'] # Retrieve the AR IDs for the current patient - bc = getToolByName(patient, 'bika_catalog') - ars = [ar.id for ar - in bc(portal_type='AnalysisRequest', review_state=states) - if 'Patient' in ar.getObject().Schema() - and ar.getObject().Schema().getField('Patient').get(ar.getObject()) - and ar.getObject().Schema().getField('Patient').get(ar.getObject()).UID() == uid] - - # Retrieve all the analyses, sorted by ResultCaptureDate DESC - bc = getToolByName(patient, 'bika_analysis_catalog') - analyses = [an.getObject() for an - in bc(portal_type='Analysis', - getRequestID=ars, - sort_on='getResultCaptureDate', - sort_order='reverse')] + query = {"portal_type": "AnalysisRequest", + "getPatientUID": api.get_uid(patient), + "review_state": ["verified", "published"], + "sort_on": "getDateSampled", + "sort_order": "descending"} + brains = api.search(query, CATALOG_ANALYSIS_REQUEST_LISTING) + samples = map(api.get_object, brains) + + # Retrieve all analyses + analyses = map(lambda samp: samp.objectValues("Analysis"), samples) + analyses = list(itertools.chain.from_iterable(analyses)) # Build the dictionary of rows for analysis in analyses: - ar = analysis.aq_parent - sampletype = ar.getSampleType() - row = rows.get(sampletype.UID()) if sampletype.UID() in rows.keys() \ - else {'object': sampletype, 'analyses': {}} - anrow = row.get('analyses') + sample = analysis.aq_parent + sample_type = sample.getSampleType() + row = { + "object": sample_type, + "analyses": {}, + } + sample_type_uid = api.get_uid(sample_type) + if sample_type_uid in rows: + row = rows.get(sample_type_uid) + + anrow = row.get("analyses") service_uid = analysis.getServiceUID() - asdict = anrow.get(service_uid, {'object': analysis, - 'title': analysis.Title(), - 'keyword': analysis.getKeyword(), - 'units': analysis.getUnit()}) + asdict = { + "object": analysis, + "title": api.get_title(analysis), + "keyword": to_utf8(analysis.getKeyword()), + } + if service_uid in anrow: + asdict = anrow.get(service_uid) + + if not anrow.get("units", None): + asdict.update({ + "units": format_supsub(to_utf8(analysis.getUnit())) + }) + date = analysis.getResultCaptureDate() or analysis.created() - date = ulocalized_time(date, 1, None, patient, 'bika') + date_time = DT2dt(to_date(date)).replace(tzinfo=None) + date_time = datetime.strftime(date_time, "%Y-%m-%d %H:%M") + # If more than one analysis of the same type has been # performed in the same datetime, get only the last one - if date not in asdict.keys(): - asdict[date] = {'object': analysis, - 'result': analysis.getResult(), - 'formattedresult': analysis.getFormattedResult()} + if date_time not in asdict.keys(): + asdict[date_time] = { + "object": analysis, + "result": analysis.getResult(), + "formattedresult": analysis.getFormattedResult() + } # Get the specs # Only the specs applied to the last analysis for that # sample type will be taken into consideration. # We assume specs from previous analyses are obsolete. - if 'specs' not in asdict.keys(): - spec = analysis.getAnalysisSpecs() - spec = spec.getResultsRangeDict() if spec else {} - specs = spec.get(analysis.getKeyword(), {}) - if not specs.get('rangecomment', ''): - if specs.get('min', '') and specs.get('max', ''): - specs['rangecomment'] = '%s - %s' % \ - (specs.get('min'), specs.get('max')) - elif specs.get('min', ''): - specs['rangecomment'] = '> %s' % specs.get('min') - elif specs.get('max', ''): - specs['rangecomment'] = '< %s' % specs.get('max') - - if specs.get('error', '0') != '0' \ - and specs.get('rangecomment', ''): - specs['rangecomment'] = ('%s (%s' % - (specs.get('rangecomment'), - specs.get('error'))) + '%)' - asdict['specs'] = specs - - if date not in dates: - dates.append(date) + if "specs" not in asdict.keys(): + specs = analysis.getResultsRange() + asdict["specs"] = get_formatted_interval(specs, "") + + if date_time not in dates: + dates.append(date_time) + anrow[service_uid] = asdict row['analyses'] = anrow - rows[sampletype.UID()] = row + rows[sample_type_uid] = row dates.sort(reverse=False) - return dates, rows @@ -174,11 +178,12 @@ def __call__(self): dates, data = get_historicresults(self.context) datatable = [] for andate in dates: - datarow = {'date': ulocalized_time( - andate, 1, None, self.context, 'bika')} + datarow = {'date': andate} for row in data.itervalues(): for anrow in row['analyses'].itervalues(): serie = anrow['title'] + if "result" not in anrow.get(andate, {}): + continue datarow[serie] = anrow.get(andate, {}).get('result', '') datatable.append(datarow) return json.dumps(datatable) diff --git a/bika/health/static/js/bika.health.historicresults.js b/bika/health/static/js/bika.health.historicresults.js new file mode 100644 index 00000000..c00702d5 --- /dev/null +++ b/bika/health/static/js/bika.health.historicresults.js @@ -0,0 +1,218 @@ +jQuery(function($){ + $(document).ready(function(){ + + // Update the chart when interpolation value changes + $('div.chart-container #interpolation').change(function(e) { + loadChart($(this).val()); + }); + + // By default, use "linear" interpolation + loadChart("linear"); + + function loadChart(interpolation) { + if ($("#chart svg").length > 0) { + $("#chart").css("height", $("#chart").innerHeight()); + $("#chart").css("width", $("#chart").innerWidth()); + } + + $("#chart").html(""); + + d3.json("historicjson", function(error, data) { + + // Do not display the chart if less than two results + if (error || data.length < 2) { + $(".chart-container").hide(); + return; + } + + $(".chart-container").show(); + + var margin = {top: 20, right: 120, bottom: 30, left: 50}, + width = $('#chart').innerWidth() - margin.left - margin.right, + height = 250 - margin.top - margin.bottom; + + var parse_date = d3.time.format("%Y-%m-%d %H:%M").parse; + + var color = d3.scale.category10(); + + var x = d3.time.scale() + .range([0, width]); + + var y = d3.scale.linear() + .range([height, 0]); + + var xAxis = d3.svg.axis() + .scale(x) + .orient("bottom") + .tickSize(0); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .tickSize(0); + + var line = d3.svg.line() + .interpolate(interpolation) + .x(function(d) { return x(d.date); }) + .y(function(d) { return y(d.result); }); + + $('#chart').append(''); + var svg = d3.select("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + // Extract the keys for series (data series might be unbalanced) + var keys = d3.set() + data.forEach(function(d) { + var row_keys = d3.keys(d); + row_keys.forEach(function(key) { + if (key !== "date") { + keys.add(key); + } + }); + }); + color.domain(keys.values()); + + // Apply valid format to date (x-axis) + data.forEach(function(d) { + d.date = parse_date(d.date); + }); + + var series = color.domain().map(function(name) { + return { + name: name, + values: data.map(function(d) { + return {date: d.date, result: +d[name]}; + }) + }; + }); + + x.domain(d3.extent(data, function(d) { return d.date; })); + y.domain([ + d3.min(series, function(c) { + return d3.min(c.values, function(v) { + return (typeof v === 'undefined') ? "" : v.result; + }); + }), + d3.max(series, function(c) { + return d3.max(c.values, function(v) { + return (typeof v === 'undefined') ? "" : v.result; + }); + }) + ]); + + svg.append("g") + .attr("class", "x axis") + .attr("fill", "#3f3f3f") + .style("font-size", "11px") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .append("text") + .attr("x", width) + .attr("dy", "-0.71em") + .attr("text-anchor", "end") + .text("Date captured"); + + svg.append("g") + .attr("class", "y axis") + .attr("fill", "#3f3f3f") + .style("font-size", "11px") + .call(yAxis) + .append("text") + .attr("transform", "rotate(-90)") + .attr("y", 6) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text("Result"); + + var serie = svg.selectAll(".serie") + .data(series) + .enter().append("g") + .attr("class", "serie"); + + serie.append("path") + .attr("class", "line") + .attr("fill", "none") + .attr("d", function(d) { + var vals = d.values; + return line( + // Bail out empty values + vals.filter(function(value) { + return !(Number.isNaN(value.result)); + }) + ); + }) + .attr("stroke-width", "1.5px") + .style("stroke", function(d) { return color(d.name); }) + .on("mouseout", function() { + d3.select(this) + .attr("stroke-width", "1.5px"); + }) + .on("mouseover", function() { + d3.select(this) + .attr("stroke-width", "4px"); + }); + + // Place the legend for the series + serie.append("text") + .datum(function(d) { + // Get the last non empty value for this serie + var last_val = 0; + for (var i = d.values.length - 1; i >= 0; i--) { + var val = d.values[i]; + console.log(val); + if (!Number.isNaN(val.result)) { + last_val = val; + break; + } + } + return {name: d.name, value: last_val}; + }) + .attr("transform", function(d) { return "translate(" + x(d.value.date) + "," + y(d.value.result) + ")"; }) + .attr("x", 10) + .attr("dy", ".35em") + .style("font-size", "11px") + .style("fill", function(d) { return color(d.name);}) + .text(function(d) { return d.name; }); + + series.forEach(function(d) { + res = d.results; + vals = d.values; + col = color(d.name); + vals.forEach(function(v) { + // Do not create dots for empty values + if (Number.isNaN(v.result)) { + return; + } + svg.append("circle") + .attr("r", 3) + .style("fill", col) + .attr("cx", x(v.date)) + .attr("cy", y(v.result)) + .on("mouseout", function() { + last = this.parentNode.children.length; + d3.select(this) + .attr("r", 3); + d3.select(this.parentNode.children[last-1]) + .remove(); + }) + .on("mouseover", function() { + d3.select(this) + .attr("r", 6); + d3.select(this.parentNode) + .append("text") + .attr("fill", "#000000") + .style("font-size", "11px") + .attr("x", x(v.date) - 10) + .attr("y", y(v.result) - 10) + .text(v.result) + }) + }); + }); + }); + } + + }); +}); \ No newline at end of file From 55980f45852221a996041152d0ee5069d57725e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 9 Apr 2020 11:12:23 +0200 Subject: [PATCH 35/37] Patient listings show wrong age (#180) * Display current age in Patients listing * Remove getAgeSplittedStr and getAge from Patient portal_type * Changelog Co-authored-by: Pau Soliva --- CHANGES.rst | 2 +- bika/health/browser/patients/folder_view.py | 25 ++++--- bika/health/catalog/patient_catalog.py | 1 - bika/health/content/patient.py | 81 ++++----------------- bika/health/upgrade/v01_02_003.py | 31 +++++++- bika/health/utils.py | 64 ++++++++++++++-- 6 files changed, 119 insertions(+), 85 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 36f536ee..11ab4132 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,13 +14,13 @@ Changelog - #163 Cannot override behavior of Patients folder when using `before_render` - #157 Changed Base Catalog Tool - **Removed** - #170 Removal of stale javascripts and css **Fixed** +- #180 Fix Patient listings show wrong age - #181 Patient historic results are not displayed - #172 Fix sporadical errors when contacts do not have a valid email address - #168 Cannot create Patient inside Client (content type not allowed) diff --git a/bika/health/browser/patients/folder_view.py b/bika/health/browser/patients/folder_view.py index 4dac40b4..83e96a78 100644 --- a/bika/health/browser/patients/folder_view.py +++ b/bika/health/browser/patients/folder_view.py @@ -20,20 +20,21 @@ import collections +from plone.app.content.browser.interfaces import IFolderContentsView +from plone.app.layout.globals.interfaces import IViewView +from zope.interface import implements + from bika.health import bikaMessageFactory as _ -from bika.health.interfaces import IPatients -from bika.health.utils import get_resource_url from bika.health.catalog import CATALOG_PATIENTS +from bika.health.interfaces import IPatients from bika.health.permissions import AddPatient +from bika.health.utils import get_age_ymd +from bika.health.utils import get_resource_url from bika.lims import api -from bika.lims.api import security +from bika.lims.api.security import check_permission from bika.lims.browser.bika_listing import BikaListingView from bika.lims.interfaces import IClient from bika.lims.utils import get_link -from plone.app.content.browser.interfaces import IFolderContentsView -from plone.app.layout.globals.interfaces import IViewView -from zope.interface import implements -from bika.lims.api.security import check_permission class PatientsView(BikaListingView): @@ -78,7 +79,7 @@ def __init__(self, context, request): 'toggle': True, 'sortable': False}), - ('getAgeSplittedStr', { + ('age', { 'title': _('Age'), 'toggle': True, 'sortable': False}), @@ -163,7 +164,13 @@ def folderitems(self, full_objects=False, classic=False): return BikaListingView.folderitems(self, classic=classic) def folderitem(self, obj, item, index): - item['getBirthDate'] = self.ulocalized_time(obj.getBirthDate) + # Date of Birth + dob = obj.getBirthDate + item['getBirthDate'] = self.ulocalized_time(dob) + + # Patient's current age + item["age"] = get_age_ymd(dob) + # make the columns patient title, patient ID and client patient ID # redirect to the Analysis Requests of the patient ars_url = "{}/{}".format(api.get_url(obj), "analysisrequests") diff --git a/bika/health/catalog/patient_catalog.py b/bika/health/catalog/patient_catalog.py index 71f548ac..56ae3ba1 100644 --- a/bika/health/catalog/patient_catalog.py +++ b/bika/health/catalog/patient_catalog.py @@ -51,7 +51,6 @@ "getPrimaryReferrerUID", # Columns without index counterpart - "getAgeSplittedStr", "getBirthDate", "getGender", "getMenstrualStatus", diff --git a/bika/health/content/patient.py b/bika/health/content/patient.py index cb20fe0b..90a18743 100644 --- a/bika/health/content/patient.py +++ b/bika/health/content/patient.py @@ -18,9 +18,6 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. -from datetime import datetime - -from Products.ATContentTypes.utils import DT2dt from Products.ATExtensions.ateapi import RecordsField from Products.Archetypes import atapi from Products.Archetypes.public import * @@ -32,6 +29,7 @@ from bika.health import logger from bika.health.config import * from bika.health.interfaces import IPatient +from bika.health.utils import get_relative_delta from bika.health.utils import translate_i18n as t from bika.health.widgets import SplittedDateWidget from bika.health.widgets.patientmenstrualstatuswidget import \ @@ -151,13 +149,6 @@ label=_('Age'), ), ), - ComputedField( - 'AgeSplittedStr', - expression="context.getAgeSplittedStr()", - widget=ComputedWidget( - visible=False - ), - ), AddressField( 'CountryState', widget=AddressWidget( @@ -923,64 +914,18 @@ def getPatientIdentifiersStr(self): return " ".join(ids) def getAgeSplitted(self): - - if self.getBirthDate(): - dob = DT2dt(self.getBirthDate()).replace(tzinfo=None) - now = datetime.today() - - currentday = now.day - currentmonth = now.month - currentyear = now.year - birthday = dob.day - birthmonth = dob.month - birthyear = dob.year - ageday = currentday - birthday - agemonth = 0 - ageyear = 0 - months31days = [1, 3, 5, 7, 8, 10, 12] - - if ageday < 0: - currentmonth -= 1 - if currentmonth < 1: - currentyear -= 1 - currentmonth = currentmonth + 12 - - dayspermonth = 30 - if currentmonth in months31days: - dayspermonth = 31 - elif currentmonth == 2: - dayspermonth = 28 - if(currentyear % 4 == 0 - and (currentyear % 100 > 0 or currentyear % 400 == 0)): - dayspermonth += 1 - - ageday = ageday + dayspermonth - - agemonth = currentmonth - birthmonth - if agemonth < 0: - currentyear -= 1 - agemonth = agemonth + 12 - - ageyear = currentyear - birthyear - - return [{'year': ageyear, - 'month': agemonth, - 'day': ageday}] - else: - return [{'year': '', - 'month': '', - 'day': ''}] - - def getAge(self): - return self.getAgeSplitted()[0]['year'] - - def getAgeSplittedStr(self): - splitted = self.getAgeSplitted()[0] - arr = [] - arr.append(splitted['year'] and str(splitted['year']) + 'y' or '') - arr.append(splitted['month'] and str(splitted['month']) + 'm' or '') - arr.append(splitted['day'] and str(splitted['day']) + 'd' or '') - return ' '.join(arr) + """Getter used for "AgeSplitted" schema field + """ + data = {"year": "", "month": "", "day": ""} + dob = self.getBirthDate() + if dob: + delta = get_relative_delta(dob) + data.update({ + "year": delta.year, + "month": delta.month, + "day": delta.day, + }) + return [data] def getCountryState(self): return self.getField('CountryState').get(self) \ diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 77e5d568..2be39ac1 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -53,6 +53,13 @@ "bika_health_standard_analysis_request.css", ] +# Metadata from catalogs to remove +METADATA_TO_REMOVE = [ + # AgeSplittedStr was only used in patients listing + # https://github.com/senaite/senaite.health/pull/180 + (CATALOG_PATIENTS, "getAgeSplittedStr"), +] + @upgradestep(PROJECTNAME, version) def upgrade(tool): @@ -98,6 +105,9 @@ def upgrade(tool): # https://github.com/senaite/senaite.health/pulls/172 fix_health_email_addresses(portal) + # Remove stale catalog columns + remove_stale_metadata(portal) + logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) return True @@ -157,6 +167,7 @@ def fix_health_email_addresses(portal): fix_email_address(portal, portal_types=portal_types, catalog_id=CATALOG_PATIENTS) + def install_senaite_panic(portal): """Install the senaite.panic addon """ @@ -169,4 +180,22 @@ def install_senaite_panic(portal): if qi.isProductInstalled(profile): logger.info("'{}' is installed".format(profile)) return - qi.installProduct(profile) \ No newline at end of file + qi.installProduct(profile) + + +def remove_stale_metadata(portal): + logger.info("Removing stale metadata ...") + for catalog, column in METADATA_TO_REMOVE: + del_metadata(catalog, column) + logger.info("Removing stale metadata ... [DONE]") + + +def del_metadata(catalog_id, column): + logger.info("Removing '{}' metadata from '{}' ..." + .format(column, catalog_id)) + catalog = api.get_tool(catalog_id) + if column not in catalog.schema(): + logger.info("Metadata '{}' not in catalog '{}' [SKIP]" + .format(column, catalog_id)) + return + catalog.delColumn(column) diff --git a/bika/health/utils.py b/bika/health/utils.py index 07bc0520..11ecfc60 100644 --- a/bika/health/utils.py +++ b/bika/health/utils.py @@ -18,16 +18,20 @@ # Copyright 2018-2019 by it's authors. # Some rights reserved, see README and LICENSE. +from datetime import datetime + +from Products.ATContentTypes.utils import DT2dt +from dateutil.relativedelta import relativedelta +from zope.i18n import translate + from bika.health import logger from bika.health.interfaces import IPatient from bika.lims import api from bika.lims.api import _marker from bika.lims.interfaces import IBatch -from bika.lims.utils import render_html_attributes, to_utf8, to_unicode -from zope.i18n import translate -from Products.Archetypes.utils import addStatusMessage - -from bika.lims.utils import tmpID +from bika.lims.utils import render_html_attributes +from bika.lims.utils import to_unicode +from bika.lims.utils import to_utf8 def get_obj_from_field(instance, fieldname, default=_marker): @@ -163,3 +167,53 @@ def handle_after_submit(context, request, state): else: status_id = "success" return status_id + + +def get_age_ymd(birth_date, to_date=None): + """Returns the age at to_date if not None. Otherwise, current age + """ + delta = get_relative_delta(birth_date, to_date) + return to_ymd(delta) + + +def get_relative_delta(from_date, to_date=None): + """Returns the relative delta between two dates. If to_date is None, + compares the from_date with now + """ + from_date = to_datetime(from_date) + if not from_date: + raise TypeError("Type not supported: from_date") + + to_date = to_date or datetime.now() + to_date = to_datetime(to_date) + if not to_date: + raise TypeError("Type not supported: to_date") + + return relativedelta(to_date, from_date) + + +def to_datetime(date_value, default=None, tzinfo=None): + if isinstance(date_value, datetime): + return date_value + + # Get the DateTime + date_value = api.to_date(date_value, default=None) + if not date_value: + if default is None: + return None + return to_datetime(default, tzinfo=tzinfo) + + # Convert to datetime and strip + return DT2dt(date_value).replace(tzinfo=tzinfo) + + +def to_ymd(delta): + """Returns a representation of a relative delta in ymd format + """ + if not isinstance(delta, relativedelta): + raise TypeError("delta parameter must be a relative_delta") + + ymd = list("ymd") + diff = map(str, (delta.years, delta.months, delta.days)) + age = filter(lambda it: int(it[0]), zip(diff, ymd)) + return " ".join(map("".join, age)) From 34b636d6452eac53a9382da50b28b3d1e73ea7c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 9 Apr 2020 11:29:10 +0200 Subject: [PATCH 36/37] Prevent Traceback in patients listing when dob is not set (#182) --- bika/health/browser/patients/folder_view.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bika/health/browser/patients/folder_view.py b/bika/health/browser/patients/folder_view.py index 83e96a78..130e9032 100644 --- a/bika/health/browser/patients/folder_view.py +++ b/bika/health/browser/patients/folder_view.py @@ -166,10 +166,8 @@ def folderitems(self, full_objects=False, classic=False): def folderitem(self, obj, item, index): # Date of Birth dob = obj.getBirthDate - item['getBirthDate'] = self.ulocalized_time(dob) - - # Patient's current age - item["age"] = get_age_ymd(dob) + item['getBirthDate'] = dob and self.ulocalized_time(dob) or "" + item["age"] = dob and get_age_ymd(dob) or "" # make the columns patient title, patient ID and client patient ID # redirect to the Analysis Requests of the patient From 05d8d769d3ce19df9f0256b92237b18853e5a853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Thu, 9 Apr 2020 21:57:15 +0200 Subject: [PATCH 37/37] Release 1.2.3 (200409) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit a2242c1c565a5fc5150e8a1d9e01cac90ede156a Author: Jordi Puiggené Date: Thu Apr 9 21:54:12 2020 +0200 Added version.txt commit cd5a80d55766b2784c696eabecd14e3b54d8edab Author: Jordi Puiggené Date: Thu Apr 9 21:51:41 2020 +0200 Changelog commit ae0ea20f8fef4214d4b1e442123e147dd4e54565 Author: Jordi Puiggené Date: Thu Apr 9 21:50:53 2020 +0200 Pin version senaite.lims 1.3.3.1 commit d6221f94f77bde06d693f7d5b40038a35d00ddb6 Author: Jordi Puiggené Date: Thu Apr 9 21:44:17 2020 +0200 Update code headers commit 978047b2e0ae88e4888eaa7837f9e4e7a9628180 Author: Jordi Puiggené Date: Thu Apr 9 21:42:52 2020 +0200 Update contributors commit d9940db88a305c5241d092513eca5a4721fa62de Author: Jordi Puiggené Date: Thu Apr 9 21:38:03 2020 +0200 Update translations --- CHANGES.rst | 5 +- CONTRIBUTORS.rst | 1 + README.rst | 2 +- bika/__init__.py | 2 +- bika/health/__init__.py | 2 +- bika/health/adapters/__init__.py | 2 +- bika/health/adapters/addsample.py | 2 +- .../adapters/widgetvisibility/__init__.py | 2 +- .../widgetvisibility/analysisrequest.py | 3 +- .../health/adapters/widgetvisibility/batch.py | 2 +- .../adapters/widgetvisibility/patient.py | 2 +- bika/health/ajax/__init__.py | 2 +- bika/health/ajax/ajaxhandler.py | 2 +- bika/health/ajax/bikasetup.py | 2 +- bika/health/ajax/client.py | 2 +- bika/health/browser/__init__.py | 2 +- .../browser/aetiologicagent/__init__.py | 2 +- .../aetiologicagent/getaetiologicagents.py | 2 +- .../getaetiologicagentsubtypes.py | 2 +- .../browser/analysisrequest/__init__.py | 2 +- .../health/browser/analysisrequest/invoice.py | 2 +- .../browser/analysisrequests/__init__.py | 2 +- bika/health/browser/analysisrequests/view.py | 2 +- bika/health/browser/batch/__init__.py | 2 +- bika/health/browser/batch/analysisrequests.py | 2 +- .../batch/getaetiologicagentsubtypes.py | 2 +- bika/health/browser/batch/getbatchinfo.py | 2 +- bika/health/browser/batch/publish.py | 2 +- bika/health/browser/batchfolder.py | 2 +- bika/health/browser/calcs/__init__.py | 2 +- bika/health/browser/client/__init__.py | 2 +- .../health/browser/client/analysisrequests.py | 2 +- bika/health/browser/client/doctors.py | 2 +- bika/health/browser/disease/__init__.py | 2 +- bika/health/browser/disease/getdiseases.py | 2 +- bika/health/browser/doctor/__init__.py | 2 +- .../health/browser/doctor/analysisrequests.py | 2 +- bika/health/browser/doctor/getdoctorid.py | 2 +- bika/health/browser/doctor/getdoctorinfo.py | 2 +- bika/health/browser/doctors/__init__.py | 2 +- bika/health/browser/doctors/folder_view.py | 2 +- bika/health/browser/doctors/getdoctors.py | 2 +- bika/health/browser/drug/__init__.py | 2 +- bika/health/browser/drug/getdrugs.py | 2 +- .../browser/drugprohibition/__init__.py | 2 +- .../drugprohibition/getdrugprohibitions.py | 2 +- .../health/browser/identifiertype/__init__.py | 2 +- .../identifiertype/getidentifiertypes.py | 2 +- bika/health/browser/immunization/__init__.py | 2 +- .../browser/immunization/getimmunizations.py | 2 +- .../browser/insurancecompany/__init__.py | 2 +- .../browser/insurancecompany/invoicefolder.py | 2 +- .../browser/insurancecompany/patients.py | 2 +- bika/health/browser/patient/__init__.py | 2 +- bika/health/browser/patient/allergies.py | 2 +- .../browser/patient/analysisrequests.py | 2 +- bika/health/browser/patient/batches.py | 2 +- .../browser/patient/chronicconditions.py | 2 +- bika/health/browser/patient/files.py | 2 +- bika/health/browser/patient/getpatientinfo.py | 2 +- .../health/browser/patient/historicresults.py | 2 +- .../browser/patient/immunizationhistory.py | 2 +- bika/health/browser/patient/travelhistory.py | 2 +- .../browser/patient/treatmenthistory.py | 2 +- bika/health/browser/patients/__init__.py | 2 +- bika/health/browser/patients/folder_view.py | 2 +- bika/health/browser/symptoms/__init__.py | 2 +- bika/health/browser/symptoms/getsymptoms.py | 2 +- bika/health/browser/treatment/__init__.py | 2 +- .../health/browser/treatment/gettreatments.py | 2 +- .../browser/vaccinationcenter/__init__.py | 2 +- .../getvaccinationcenters.py | 2 +- .../vaccinationcenter/vaccinationcenter.py | 2 +- .../vaccinationcentercontact/__init__.py | 2 +- bika/health/catalog/__init__.py | 2 +- .../health/catalog/analysisrequest_catalog.py | 2 +- bika/health/catalog/catalog_utilities.py | 2 +- bika/health/catalog/indexers/__init__.py | 2 +- .../catalog/indexers/analysisrequest.py | 2 +- bika/health/catalog/indexers/batch.py | 2 +- bika/health/catalog/indexers/patient.py | 2 +- bika/health/catalog/patient_catalog.py | 2 +- bika/health/config.py | 2 +- bika/health/content/__init__.py | 2 +- bika/health/content/aetiologicagent.py | 2 +- bika/health/content/analysis.py | 2 +- bika/health/content/analysisrequest.py | 2 +- bika/health/content/batch.py | 2 +- bika/health/content/bikasetup.py | 2 +- bika/health/content/caseoutcome.py | 2 +- bika/health/content/casestatus.py | 2 +- .../content/casesyndromicclassification.py | 2 +- bika/health/content/client.py | 2 +- bika/health/content/disease.py | 2 +- bika/health/content/doctor.py | 2 +- bika/health/content/doctors.py | 2 +- bika/health/content/drug.py | 2 +- bika/health/content/drugprohibition.py | 2 +- bika/health/content/ethnicity.py | 2 +- bika/health/content/identifiertype.py | 2 +- bika/health/content/immunization.py | 2 +- bika/health/content/insurancecompany.py | 2 +- bika/health/content/patient.py | 2 +- bika/health/content/patients.py | 2 +- bika/health/content/symptom.py | 2 +- bika/health/content/treatment.py | 2 +- bika/health/content/vaccinationcenter.py | 2 +- .../content/vaccinationcentercontact.py | 2 +- bika/health/controlpanel/__init__.py | 2 +- .../controlpanel/bika_aetiologicagents.py | 2 +- bika/health/controlpanel/bika_caseoutcomes.py | 2 +- bika/health/controlpanel/bika_casestatuses.py | 2 +- .../bika_casesyndromicclassifications.py | 2 +- bika/health/controlpanel/bika_diseases.py | 2 +- .../controlpanel/bika_drugprohibitions.py | 2 +- bika/health/controlpanel/bika_drugs.py | 2 +- bika/health/controlpanel/bika_ethnicities.py | 2 +- .../controlpanel/bika_identifiertypes.py | 2 +- .../health/controlpanel/bika_immunizations.py | 2 +- .../controlpanel/bika_insurancecompanies.py | 2 +- bika/health/controlpanel/bika_symptoms.py | 2 +- bika/health/controlpanel/bika_treatments.py | 2 +- .../controlpanel/bika_vaccinationcenters.py | 2 +- bika/health/fields/__init__.py | 2 +- bika/health/icd9cm/__init__.py | 2 +- bika/health/impress/__init__.py | 2 +- bika/health/interfaces.py | 2 +- .../locales/af/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/af/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ar/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ar/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/bg_BG/LC_MESSAGES/senaite.core.po | 262 ++--- .../bg_BG/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/bn/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/bn/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ca/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ca/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/cs/LC_MESSAGES/senaite.core.po | 736 +++++++------- .../locales/cs/LC_MESSAGES/senaite.health.po | 938 ++++++++---------- .../locales/da_DK/LC_MESSAGES/senaite.core.po | 262 ++--- .../da_DK/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/de/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/de/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/el/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/el/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/en/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/en/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/en_ES/LC_MESSAGES/senaite.core.po | 262 ++--- .../en_ES/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/en_US/LC_MESSAGES/senaite.core.po | 262 ++--- .../en_US/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/eo/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/eo/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/es/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/es/LC_MESSAGES/senaite.health.po | 273 ++--- .../es_419/LC_MESSAGES/senaite.core.po | 262 ++--- .../es_419/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/es_AR/LC_MESSAGES/senaite.core.po | 262 ++--- .../es_AR/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/es_MX/LC_MESSAGES/senaite.core.po | 262 ++--- .../es_MX/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/es_PE/LC_MESSAGES/senaite.core.po | 262 ++--- .../es_PE/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/es_UY/LC_MESSAGES/senaite.core.po | 262 ++--- .../es_UY/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/fa/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/fa/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/fa_IR/LC_MESSAGES/senaite.core.po | 262 ++--- .../fa_IR/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/fi/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/fi/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/fr/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/fr/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/hi/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/hi/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/hu/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/hu/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/hu_HU/LC_MESSAGES/senaite.core.po | 262 ++--- .../hu_HU/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/id/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/id/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/it/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/it/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ja/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ja/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ka_GE/LC_MESSAGES/senaite.core.po | 262 ++--- .../ka_GE/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/kn/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/kn/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/lo_LA/LC_MESSAGES/senaite.core.po | 262 ++--- .../lo_LA/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/lt/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/lt/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/mn/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/mn/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/nl/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/nl/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/pl/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/pl/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/pt/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/pt/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/pt_BR/LC_MESSAGES/senaite.core.po | 262 ++--- .../pt_BR/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ro_RO/LC_MESSAGES/senaite.core.po | 262 ++--- .../ro_RO/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ru/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ru/LC_MESSAGES/senaite.health.po | 273 ++--- bika/health/locales/senaite.core.pot | 262 ++--- bika/health/locales/senaite.health.pot | 273 ++--- .../locales/sv/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/sv/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ta/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ta/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/te_IN/LC_MESSAGES/senaite.core.po | 262 ++--- .../te_IN/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/tr_TR/LC_MESSAGES/senaite.core.po | 262 ++--- .../tr_TR/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/uk_UA/LC_MESSAGES/senaite.core.po | 262 ++--- .../uk_UA/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/ur/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/ur/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/vi/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/vi/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/zh/LC_MESSAGES/senaite.core.po | 262 ++--- .../locales/zh/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/zh_CN/LC_MESSAGES/senaite.core.po | 262 ++--- .../zh_CN/LC_MESSAGES/senaite.health.po | 273 ++--- .../locales/zh_TW/LC_MESSAGES/senaite.core.po | 262 ++--- .../zh_TW/LC_MESSAGES/senaite.health.po | 273 ++--- bika/health/monkeys/__init__.py | 19 + bika/health/monkeys/batch.py | 2 +- bika/health/monkeys/batchfolder.py | 2 +- bika/health/monkeys/macrowidget.py | 7 +- bika/health/obsolete/__init__.py | 2 +- bika/health/permissions.py | 2 +- bika/health/setupdata/__init__.py | 2 +- bika/health/setuphandlers.py | 2 +- bika/health/static/__init__.py | 2 +- bika/health/subscribers/__init__.py | 2 +- bika/health/subscribers/batch.py | 2 +- bika/health/subscribers/patient.py | 2 +- bika/health/testing.py | 2 +- bika/health/tests/__init__.py | 2 +- bika/health/tests/base.py | 2 +- bika/health/tests/test_doctests.py | 2 +- bika/health/tests/test_setup.py | 2 +- bika/health/upgrade/__init__.py | 2 +- bika/health/upgrade/utils.py | 2 +- bika/health/upgrade/v01_00_000.py | 2 +- bika/health/upgrade/v01_01_000.py | 2 +- bika/health/upgrade/v01_01_001.py | 2 +- bika/health/upgrade/v01_01_002.py | 2 +- bika/health/upgrade/v01_01_003.py | 2 +- bika/health/upgrade/v01_02_000.py | 2 +- bika/health/upgrade/v01_02_001.py | 2 +- bika/health/upgrade/v01_02_002.py | 2 +- bika/health/upgrade/v01_02_003.py | 3 +- bika/health/utils.py | 2 +- bika/health/validators.py | 2 +- bika/health/version.txt | 1 + bika/health/widgets/__init__.py | 2 +- .../widgets/caseaetiologicagentswidget.py | 2 +- .../health/widgets/casebasalbodytempwidget.py | 2 +- .../widgets/casemenstrualstatuswidget.py | 2 +- .../widgets/casepatientconditionwidget.py | 2 +- bika/health/widgets/casesymptomswidget.py | 2 +- .../widgets/patientmenstrualstatuswidget.py | 2 +- bika/health/widgets/readonlystringwidget.py | 2 +- bika/health/widgets/splitteddatewidget.py | 2 +- setup.py | 7 +- 270 files changed, 11320 insertions(+), 17470 deletions(-) create mode 100644 bika/health/version.txt diff --git a/CHANGES.rst b/CHANGES.rst index 11ab4132..829ce709 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog ========= -1.2.3 (unreleased) +1.2.3 (2020-04-09) ------------------ **Added** @@ -29,9 +29,6 @@ Changelog - #158 Fix the filter query in the Add Sample Form -**Security** - - 1.2.2 (2019-11-07) ------------------ diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 088e1aa4..30faf96d 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -20,6 +20,7 @@ Translators - Lemoene Smit, lemoene@bikalabs.com, Afrikaans (af) - Jordi Puiggené, jpuiggene@naralabs.com, Catalan (ca) +- trendspotter, j.podhorecky@volny.cz, Czech (cs) - limsgr, inactive+limsgr@transifex.com, Greek (el) - Jordi Puiggené, jpuiggene@naralabs.com, Spanish (es) - Pau Soliva, psoliva@naralabs.com, Spanish (es) diff --git a/README.rst b/README.rst index 3de568d9..20644773 100644 --- a/README.rst +++ b/README.rst @@ -143,7 +143,7 @@ Feedback and support License ======= -**SENAITE.HEALTH** Copyright (C) 2018-2019 Senaite Foundation +**SENAITE.HEALTH** Copyright (C) 2018-2020 RIDING BYTES & NARALABS This software, henceforth "SENAITE.HEALTH" is an add-on for `Plone CMS `_ and is a derivative work of BIKA HEALTH. diff --git a/bika/__init__.py b/bika/__init__.py index a3bbbf3b..7f2114fe 100644 --- a/bika/__init__.py +++ b/bika/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. try: diff --git a/bika/health/__init__.py b/bika/health/__init__.py index 0b6c12e2..11d2cf42 100644 --- a/bika/health/__init__.py +++ b/bika/health/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from zope.i18nmessageid import MessageFactory diff --git a/bika/health/adapters/__init__.py b/bika/health/adapters/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/adapters/__init__.py +++ b/bika/health/adapters/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/adapters/addsample.py b/bika/health/adapters/addsample.py index 77a9af04..50734216 100644 --- a/bika/health/adapters/addsample.py +++ b/bika/health/adapters/addsample.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from zope.component import adapts diff --git a/bika/health/adapters/widgetvisibility/__init__.py b/bika/health/adapters/widgetvisibility/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/adapters/widgetvisibility/__init__.py +++ b/bika/health/adapters/widgetvisibility/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/adapters/widgetvisibility/analysisrequest.py b/bika/health/adapters/widgetvisibility/analysisrequest.py index b0261b05..f3a81382 100644 --- a/bika/health/adapters/widgetvisibility/analysisrequest.py +++ b/bika/health/adapters/widgetvisibility/analysisrequest.py @@ -15,8 +15,9 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. + from bika.health.interfaces import IPatient from bika.lims.adapters.widgetvisibility import SenaiteATWidgetVisibility from bika.lims.interfaces import IBatch diff --git a/bika/health/adapters/widgetvisibility/batch.py b/bika/health/adapters/widgetvisibility/batch.py index c7be4a6a..67112038 100644 --- a/bika/health/adapters/widgetvisibility/batch.py +++ b/bika/health/adapters/widgetvisibility/batch.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.interfaces import IPatient diff --git a/bika/health/adapters/widgetvisibility/patient.py b/bika/health/adapters/widgetvisibility/patient.py index 6632494e..bd4b388b 100644 --- a/bika/health/adapters/widgetvisibility/patient.py +++ b/bika/health/adapters/widgetvisibility/patient.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.adapters.widgetvisibility import SenaiteATWidgetVisibility diff --git a/bika/health/ajax/__init__.py b/bika/health/ajax/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/ajax/__init__.py +++ b/bika/health/ajax/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/ajax/ajaxhandler.py b/bika/health/ajax/ajaxhandler.py index 9e65b097..c529b170 100644 --- a/bika/health/ajax/ajaxhandler.py +++ b/bika/health/ajax/ajaxhandler.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.browser import BrowserView diff --git a/bika/health/ajax/bikasetup.py b/bika/health/ajax/bikasetup.py index a39a8b9b..8796a8e4 100644 --- a/bika/health/ajax/bikasetup.py +++ b/bika/health/ajax/bikasetup.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.ajax.ajaxhandler import AjaxHandler diff --git a/bika/health/ajax/client.py b/bika/health/ajax/client.py index cba233eb..aaa39e05 100644 --- a/bika/health/ajax/client.py +++ b/bika/health/ajax/client.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/__init__.py b/bika/health/browser/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/__init__.py +++ b/bika/health/browser/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/aetiologicagent/__init__.py b/bika/health/browser/aetiologicagent/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/aetiologicagent/__init__.py +++ b/bika/health/browser/aetiologicagent/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/aetiologicagent/getaetiologicagents.py b/bika/health/browser/aetiologicagent/getaetiologicagents.py index 8ae9d05f..a31e1962 100644 --- a/bika/health/browser/aetiologicagent/getaetiologicagents.py +++ b/bika/health/browser/aetiologicagent/getaetiologicagents.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/aetiologicagent/getaetiologicagentsubtypes.py b/bika/health/browser/aetiologicagent/getaetiologicagentsubtypes.py index 45cd8391..beb28306 100644 --- a/bika/health/browser/aetiologicagent/getaetiologicagentsubtypes.py +++ b/bika/health/browser/aetiologicagent/getaetiologicagentsubtypes.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/analysisrequest/__init__.py b/bika/health/browser/analysisrequest/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/analysisrequest/__init__.py +++ b/bika/health/browser/analysisrequest/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/analysisrequest/invoice.py b/bika/health/browser/analysisrequest/invoice.py index 3fe3e89b..5b060c51 100644 --- a/bika/health/browser/analysisrequest/invoice.py +++ b/bika/health/browser/analysisrequest/invoice.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/analysisrequests/__init__.py b/bika/health/browser/analysisrequests/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/analysisrequests/__init__.py +++ b/bika/health/browser/analysisrequests/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/analysisrequests/view.py b/bika/health/browser/analysisrequests/view.py index f2cd5789..4159deab 100644 --- a/bika/health/browser/analysisrequests/view.py +++ b/bika/health/browser/analysisrequests/view.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFCore.utils import getToolByName diff --git a/bika/health/browser/batch/__init__.py b/bika/health/browser/batch/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/batch/__init__.py +++ b/bika/health/browser/batch/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/batch/analysisrequests.py b/bika/health/browser/batch/analysisrequests.py index 85335d31..8fc05385 100644 --- a/bika/health/browser/batch/analysisrequests.py +++ b/bika/health/browser/batch/analysisrequests.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.browser.batch.analysisrequests import AnalysisRequestsView as BaseBatchARView diff --git a/bika/health/browser/batch/getaetiologicagentsubtypes.py b/bika/health/browser/batch/getaetiologicagentsubtypes.py index 45cd8391..beb28306 100644 --- a/bika/health/browser/batch/getaetiologicagentsubtypes.py +++ b/bika/health/browser/batch/getaetiologicagentsubtypes.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/batch/getbatchinfo.py b/bika/health/browser/batch/getbatchinfo.py index b194eead..821b45b5 100644 --- a/bika/health/browser/batch/getbatchinfo.py +++ b/bika/health/browser/batch/getbatchinfo.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFCore.utils import getToolByName diff --git a/bika/health/browser/batch/publish.py b/bika/health/browser/batch/publish.py index 70d97f56..939cea80 100644 --- a/bika/health/browser/batch/publish.py +++ b/bika/health/browser/batch/publish.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from DateTime import DateTime diff --git a/bika/health/browser/batchfolder.py b/bika/health/browser/batchfolder.py index e2e57233..89d42a6d 100644 --- a/bika/health/browser/batchfolder.py +++ b/bika/health/browser/batchfolder.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import collections diff --git a/bika/health/browser/calcs/__init__.py b/bika/health/browser/calcs/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/calcs/__init__.py +++ b/bika/health/browser/calcs/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/client/__init__.py b/bika/health/browser/client/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/client/__init__.py +++ b/bika/health/browser/client/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/client/analysisrequests.py b/bika/health/browser/client/analysisrequests.py index f597504a..55005f8e 100644 --- a/bika/health/browser/client/analysisrequests.py +++ b/bika/health/browser/client/analysisrequests.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.browser.client import ClientAnalysisRequestsView as BaseClientARView diff --git a/bika/health/browser/client/doctors.py b/bika/health/browser/client/doctors.py index 8e86a46b..908be99e 100644 --- a/bika/health/browser/client/doctors.py +++ b/bika/health/browser/client/doctors.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.browser.doctors.folder_view import DoctorsView diff --git a/bika/health/browser/disease/__init__.py b/bika/health/browser/disease/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/disease/__init__.py +++ b/bika/health/browser/disease/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/disease/getdiseases.py b/bika/health/browser/disease/getdiseases.py index 94efbad2..1bbb294f 100644 --- a/bika/health/browser/disease/getdiseases.py +++ b/bika/health/browser/disease/getdiseases.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. """Fetch diseases from ICD and bika_setup tables diff --git a/bika/health/browser/doctor/__init__.py b/bika/health/browser/doctor/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/doctor/__init__.py +++ b/bika/health/browser/doctor/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/doctor/analysisrequests.py b/bika/health/browser/doctor/analysisrequests.py index e3e0eab8..5e793c8f 100644 --- a/bika/health/browser/doctor/analysisrequests.py +++ b/bika/health/browser/doctor/analysisrequests.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.browser.analysisrequests.view import \ diff --git a/bika/health/browser/doctor/getdoctorid.py b/bika/health/browser/doctor/getdoctorid.py index 1f7dab5d..a4527edc 100644 --- a/bika/health/browser/doctor/getdoctorid.py +++ b/bika/health/browser/doctor/getdoctorid.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.browser import BrowserView diff --git a/bika/health/browser/doctor/getdoctorinfo.py b/bika/health/browser/doctor/getdoctorinfo.py index d67ca688..2fc90083 100644 --- a/bika/health/browser/doctor/getdoctorinfo.py +++ b/bika/health/browser/doctor/getdoctorinfo.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ZCTextIndex.ParseTree import ParseError diff --git a/bika/health/browser/doctors/__init__.py b/bika/health/browser/doctors/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/doctors/__init__.py +++ b/bika/health/browser/doctors/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/doctors/folder_view.py b/bika/health/browser/doctors/folder_view.py index 5a64cac0..6a919a8c 100644 --- a/bika/health/browser/doctors/folder_view.py +++ b/bika/health/browser/doctors/folder_view.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from collections import OrderedDict diff --git a/bika/health/browser/doctors/getdoctors.py b/bika/health/browser/doctors/getdoctors.py index 8b895abd..ecf271dd 100644 --- a/bika/health/browser/doctors/getdoctors.py +++ b/bika/health/browser/doctors/getdoctors.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/drug/__init__.py b/bika/health/browser/drug/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/drug/__init__.py +++ b/bika/health/browser/drug/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/drug/getdrugs.py b/bika/health/browser/drug/getdrugs.py index 112c776a..2745ee08 100644 --- a/bika/health/browser/drug/getdrugs.py +++ b/bika/health/browser/drug/getdrugs.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/drugprohibition/__init__.py b/bika/health/browser/drugprohibition/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/drugprohibition/__init__.py +++ b/bika/health/browser/drugprohibition/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/drugprohibition/getdrugprohibitions.py b/bika/health/browser/drugprohibition/getdrugprohibitions.py index 684c811a..c1142388 100644 --- a/bika/health/browser/drugprohibition/getdrugprohibitions.py +++ b/bika/health/browser/drugprohibition/getdrugprohibitions.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import bikaMessageFactory as _ diff --git a/bika/health/browser/identifiertype/__init__.py b/bika/health/browser/identifiertype/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/identifiertype/__init__.py +++ b/bika/health/browser/identifiertype/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/identifiertype/getidentifiertypes.py b/bika/health/browser/identifiertype/getidentifiertypes.py index 88ab6bff..c40f0d39 100644 --- a/bika/health/browser/identifiertype/getidentifiertypes.py +++ b/bika/health/browser/identifiertype/getidentifiertypes.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/immunization/__init__.py b/bika/health/browser/immunization/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/immunization/__init__.py +++ b/bika/health/browser/immunization/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/immunization/getimmunizations.py b/bika/health/browser/immunization/getimmunizations.py index 3cb81d13..16b4e051 100644 --- a/bika/health/browser/immunization/getimmunizations.py +++ b/bika/health/browser/immunization/getimmunizations.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/insurancecompany/__init__.py b/bika/health/browser/insurancecompany/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/insurancecompany/__init__.py +++ b/bika/health/browser/insurancecompany/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/insurancecompany/invoicefolder.py b/bika/health/browser/insurancecompany/invoicefolder.py index 39c6646f..d09d7c6c 100644 --- a/bika/health/browser/insurancecompany/invoicefolder.py +++ b/bika/health/browser/insurancecompany/invoicefolder.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFCore.utils import getToolByName diff --git a/bika/health/browser/insurancecompany/patients.py b/bika/health/browser/insurancecompany/patients.py index 3c403723..21a494b2 100644 --- a/bika/health/browser/insurancecompany/patients.py +++ b/bika/health/browser/insurancecompany/patients.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.browser.patients.folder_view import PatientsView as BaseView diff --git a/bika/health/browser/patient/__init__.py b/bika/health/browser/patient/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/patient/__init__.py +++ b/bika/health/browser/patient/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/patient/allergies.py b/bika/health/browser/patient/allergies.py index 19a3f05d..638c9feb 100644 --- a/bika/health/browser/patient/allergies.py +++ b/bika/health/browser/patient/allergies.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/patient/analysisrequests.py b/bika/health/browser/patient/analysisrequests.py index 54f953fc..7aed5390 100644 --- a/bika/health/browser/patient/analysisrequests.py +++ b/bika/health/browser/patient/analysisrequests.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import bikaMessageFactory as _ diff --git a/bika/health/browser/patient/batches.py b/bika/health/browser/patient/batches.py index c70cfbfb..bb8c2fe9 100644 --- a/bika/health/browser/patient/batches.py +++ b/bika/health/browser/patient/batches.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.browser.batchfolder import BatchListingViewAdapter diff --git a/bika/health/browser/patient/chronicconditions.py b/bika/health/browser/patient/chronicconditions.py index ebd2e399..668c7e4b 100644 --- a/bika/health/browser/patient/chronicconditions.py +++ b/bika/health/browser/patient/chronicconditions.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/patient/files.py b/bika/health/browser/patient/files.py index ac348ae3..ae3370a2 100644 --- a/bika/health/browser/patient/files.py +++ b/bika/health/browser/patient/files.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from ZODB.POSException import POSKeyError diff --git a/bika/health/browser/patient/getpatientinfo.py b/bika/health/browser/patient/getpatientinfo.py index 63b8dcfc..89060f4d 100644 --- a/bika/health/browser/patient/getpatientinfo.py +++ b/bika/health/browser/patient/getpatientinfo.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/patient/historicresults.py b/bika/health/browser/patient/historicresults.py index 979cc38b..ca9c1cfa 100644 --- a/bika/health/browser/patient/historicresults.py +++ b/bika/health/browser/patient/historicresults.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import itertools diff --git a/bika/health/browser/patient/immunizationhistory.py b/bika/health/browser/patient/immunizationhistory.py index 931d81aa..7fd03a5a 100644 --- a/bika/health/browser/patient/immunizationhistory.py +++ b/bika/health/browser/patient/immunizationhistory.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/patient/travelhistory.py b/bika/health/browser/patient/travelhistory.py index a579c7ec..17316f7a 100644 --- a/bika/health/browser/patient/travelhistory.py +++ b/bika/health/browser/patient/travelhistory.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/patient/treatmenthistory.py b/bika/health/browser/patient/treatmenthistory.py index 2771d7fd..2ce344d5 100644 --- a/bika/health/browser/patient/treatmenthistory.py +++ b/bika/health/browser/patient/treatmenthistory.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile diff --git a/bika/health/browser/patients/__init__.py b/bika/health/browser/patients/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/patients/__init__.py +++ b/bika/health/browser/patients/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/patients/folder_view.py b/bika/health/browser/patients/folder_view.py index 130e9032..96b7f70a 100644 --- a/bika/health/browser/patients/folder_view.py +++ b/bika/health/browser/patients/folder_view.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import collections diff --git a/bika/health/browser/symptoms/__init__.py b/bika/health/browser/symptoms/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/symptoms/__init__.py +++ b/bika/health/browser/symptoms/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/symptoms/getsymptoms.py b/bika/health/browser/symptoms/getsymptoms.py index 20c58777..18d795cf 100644 --- a/bika/health/browser/symptoms/getsymptoms.py +++ b/bika/health/browser/symptoms/getsymptoms.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFCore.utils import getToolByName diff --git a/bika/health/browser/treatment/__init__.py b/bika/health/browser/treatment/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/treatment/__init__.py +++ b/bika/health/browser/treatment/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/treatment/gettreatments.py b/bika/health/browser/treatment/gettreatments.py index e5020dc2..0a4bbc45 100644 --- a/bika/health/browser/treatment/gettreatments.py +++ b/bika/health/browser/treatment/gettreatments.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/vaccinationcenter/__init__.py b/bika/health/browser/vaccinationcenter/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/vaccinationcenter/__init__.py +++ b/bika/health/browser/vaccinationcenter/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/browser/vaccinationcenter/getvaccinationcenters.py b/bika/health/browser/vaccinationcenter/getvaccinationcenters.py index 1cf2f11c..b8a44e2a 100644 --- a/bika/health/browser/vaccinationcenter/getvaccinationcenters.py +++ b/bika/health/browser/vaccinationcenter/getvaccinationcenters.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/browser/vaccinationcenter/vaccinationcenter.py b/bika/health/browser/vaccinationcenter/vaccinationcenter.py index b942c653..e50c8ce1 100644 --- a/bika/health/browser/vaccinationcenter/vaccinationcenter.py +++ b/bika/health/browser/vaccinationcenter/vaccinationcenter.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.browser import BrowserView diff --git a/bika/health/browser/vaccinationcentercontact/__init__.py b/bika/health/browser/vaccinationcentercontact/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/browser/vaccinationcentercontact/__init__.py +++ b/bika/health/browser/vaccinationcentercontact/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/catalog/__init__.py b/bika/health/catalog/__init__.py index 673995ff..9863fef4 100644 --- a/bika/health/catalog/__init__.py +++ b/bika/health/catalog/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from .patient_catalog import CATALOG_PATIENTS diff --git a/bika/health/catalog/analysisrequest_catalog.py b/bika/health/catalog/analysisrequest_catalog.py index 788bcb39..afac70ec 100644 --- a/bika/health/catalog/analysisrequest_catalog.py +++ b/bika/health/catalog/analysisrequest_catalog.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.catalog import CATALOG_ANALYSIS_REQUEST_LISTING diff --git a/bika/health/catalog/catalog_utilities.py b/bika/health/catalog/catalog_utilities.py index ccb20b85..a23b362e 100644 --- a/bika/health/catalog/catalog_utilities.py +++ b/bika/health/catalog/catalog_utilities.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.catalog.analysisrequest_catalog import\ diff --git a/bika/health/catalog/indexers/__init__.py b/bika/health/catalog/indexers/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/catalog/indexers/__init__.py +++ b/bika/health/catalog/indexers/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/catalog/indexers/analysisrequest.py b/bika/health/catalog/indexers/analysisrequest.py index 2f27156a..dcf6e6d9 100644 --- a/bika/health/catalog/indexers/analysisrequest.py +++ b/bika/health/catalog/indexers/analysisrequest.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from plone.indexer import indexer diff --git a/bika/health/catalog/indexers/batch.py b/bika/health/catalog/indexers/batch.py index d31e563b..d0d03cba 100644 --- a/bika/health/catalog/indexers/batch.py +++ b/bika/health/catalog/indexers/batch.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from plone.indexer import indexer diff --git a/bika/health/catalog/indexers/patient.py b/bika/health/catalog/indexers/patient.py index 67a0fa88..1b3c5cb5 100644 --- a/bika/health/catalog/indexers/patient.py +++ b/bika/health/catalog/indexers/patient.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.catalog.patient_catalog import CATALOG_PATIENTS diff --git a/bika/health/catalog/patient_catalog.py b/bika/health/catalog/patient_catalog.py index 56ae3ba1..f4db239a 100644 --- a/bika/health/catalog/patient_catalog.py +++ b/bika/health/catalog/patient_catalog.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from App.class_init import InitializeClass diff --git a/bika/health/config.py b/bika/health/config.py index 47fcd221..9e5477a9 100644 --- a/bika/health/config.py +++ b/bika/health/config.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Archetypes.public import DisplayList diff --git a/bika/health/content/__init__.py b/bika/health/content/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/content/__init__.py +++ b/bika/health/content/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/content/aetiologicagent.py b/bika/health/content/aetiologicagent.py index 4f2df0dc..b0176d35 100644 --- a/bika/health/content/aetiologicagent.py +++ b/bika/health/content/aetiologicagent.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/analysis.py b/bika/health/content/analysis.py index dc7a6d1c..b2982a54 100644 --- a/bika/health/content/analysis.py +++ b/bika/health/content/analysis.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Archetypes import atapi diff --git a/bika/health/content/analysisrequest.py b/bika/health/content/analysisrequest.py index 6d346293..e1167687 100644 --- a/bika/health/content/analysisrequest.py +++ b/bika/health/content/analysisrequest.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. """ http://pypi.python.org/pypi/archetypes.schemaextender diff --git a/bika/health/content/batch.py b/bika/health/content/batch.py index bdedd624..2784d688 100644 --- a/bika/health/content/batch.py +++ b/bika/health/content/batch.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Archetypes import DisplayList diff --git a/bika/health/content/bikasetup.py b/bika/health/content/bikasetup.py index 2862901c..22d21b1a 100644 --- a/bika/health/content/bikasetup.py +++ b/bika/health/content/bikasetup.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from archetypes.schemaextender.interfaces import IOrderableSchemaExtender diff --git a/bika/health/content/caseoutcome.py b/bika/health/content/caseoutcome.py index 28549c6c..33fa0d1f 100644 --- a/bika/health/content/caseoutcome.py +++ b/bika/health/content/caseoutcome.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/casestatus.py b/bika/health/content/casestatus.py index 48c93fde..b10d60bc 100644 --- a/bika/health/content/casestatus.py +++ b/bika/health/content/casestatus.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/casesyndromicclassification.py b/bika/health/content/casesyndromicclassification.py index c809f3f2..e45952e2 100644 --- a/bika/health/content/casesyndromicclassification.py +++ b/bika/health/content/casesyndromicclassification.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/client.py b/bika/health/content/client.py index 89660892..70348bb3 100644 --- a/bika/health/content/client.py +++ b/bika/health/content/client.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. """ http://pypi.python.org/pypi/archetypes.schemaextender diff --git a/bika/health/content/disease.py b/bika/health/content/disease.py index f57b9614..1910b12b 100644 --- a/bika/health/content/disease.py +++ b/bika/health/content/disease.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/doctor.py b/bika/health/content/doctor.py index 60171c40..5fb635e2 100644 --- a/bika/health/content/doctor.py +++ b/bika/health/content/doctor.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Archetypes import atapi diff --git a/bika/health/content/doctors.py b/bika/health/content/doctors.py index f8141648..ee452ba0 100644 --- a/bika/health/content/doctors.py +++ b/bika/health/content/doctors.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import json diff --git a/bika/health/content/drug.py b/bika/health/content/drug.py index 019e39ff..ad6ea20e 100644 --- a/bika/health/content/drug.py +++ b/bika/health/content/drug.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/drugprohibition.py b/bika/health/content/drugprohibition.py index 7a9674fa..24291ec6 100644 --- a/bika/health/content/drugprohibition.py +++ b/bika/health/content/drugprohibition.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/ethnicity.py b/bika/health/content/ethnicity.py index 3643c7fa..20386899 100644 --- a/bika/health/content/ethnicity.py +++ b/bika/health/content/ethnicity.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from zope.interface import implements diff --git a/bika/health/content/identifiertype.py b/bika/health/content/identifiertype.py index d42383f5..0de04cc6 100644 --- a/bika/health/content/identifiertype.py +++ b/bika/health/content/identifiertype.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/immunization.py b/bika/health/content/immunization.py index b1f2e894..56bbe41e 100644 --- a/bika/health/content/immunization.py +++ b/bika/health/content/immunization.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/insurancecompany.py b/bika/health/content/insurancecompany.py index 17f413b9..2837b182 100644 --- a/bika/health/content/insurancecompany.py +++ b/bika/health/content/insurancecompany.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/patient.py b/bika/health/content/patient.py index 90a18743..70a8535d 100644 --- a/bika/health/content/patient.py +++ b/bika/health/content/patient.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATExtensions.ateapi import RecordsField diff --git a/bika/health/content/patients.py b/bika/health/content/patients.py index 2b081450..0caf005a 100644 --- a/bika/health/content/patients.py +++ b/bika/health/content/patients.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.Archetypes import atapi diff --git a/bika/health/content/symptom.py b/bika/health/content/symptom.py index 1bac280f..dda8eb92 100644 --- a/bika/health/content/symptom.py +++ b/bika/health/content/symptom.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/treatment.py b/bika/health/content/treatment.py index 028d8e01..3a989dfb 100644 --- a/bika/health/content/treatment.py +++ b/bika/health/content/treatment.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/vaccinationcenter.py b/bika/health/content/vaccinationcenter.py index 40755502..9bae6687 100644 --- a/bika/health/content/vaccinationcenter.py +++ b/bika/health/content/vaccinationcenter.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/content/vaccinationcentercontact.py b/bika/health/content/vaccinationcentercontact.py index a8aa9c50..1ec58b06 100644 --- a/bika/health/content/vaccinationcentercontact.py +++ b/bika/health/content/vaccinationcentercontact.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/controlpanel/__init__.py b/bika/health/controlpanel/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/controlpanel/__init__.py +++ b/bika/health/controlpanel/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/controlpanel/bika_aetiologicagents.py b/bika/health/controlpanel/bika_aetiologicagents.py index 8b26ca7c..589cceed 100644 --- a/bika/health/controlpanel/bika_aetiologicagents.py +++ b/bika/health/controlpanel/bika_aetiologicagents.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_caseoutcomes.py b/bika/health/controlpanel/bika_caseoutcomes.py index 09b03ce1..1c2dfe15 100644 --- a/bika/health/controlpanel/bika_caseoutcomes.py +++ b/bika/health/controlpanel/bika_caseoutcomes.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_casestatuses.py b/bika/health/controlpanel/bika_casestatuses.py index c52b6a5a..3f07458f 100644 --- a/bika/health/controlpanel/bika_casestatuses.py +++ b/bika/health/controlpanel/bika_casestatuses.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_casesyndromicclassifications.py b/bika/health/controlpanel/bika_casesyndromicclassifications.py index f90a5cb4..8c31dcb9 100644 --- a/bika/health/controlpanel/bika_casesyndromicclassifications.py +++ b/bika/health/controlpanel/bika_casesyndromicclassifications.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_diseases.py b/bika/health/controlpanel/bika_diseases.py index aebd35f2..6f316c77 100644 --- a/bika/health/controlpanel/bika_diseases.py +++ b/bika/health/controlpanel/bika_diseases.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_drugprohibitions.py b/bika/health/controlpanel/bika_drugprohibitions.py index b12c3ad7..88de0819 100644 --- a/bika/health/controlpanel/bika_drugprohibitions.py +++ b/bika/health/controlpanel/bika_drugprohibitions.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_drugs.py b/bika/health/controlpanel/bika_drugs.py index 8be87022..9b488c8e 100644 --- a/bika/health/controlpanel/bika_drugs.py +++ b/bika/health/controlpanel/bika_drugs.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_ethnicities.py b/bika/health/controlpanel/bika_ethnicities.py index e13a1e7d..f8ce5440 100644 --- a/bika/health/controlpanel/bika_ethnicities.py +++ b/bika/health/controlpanel/bika_ethnicities.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_identifiertypes.py b/bika/health/controlpanel/bika_identifiertypes.py index 92c79af5..4d210103 100644 --- a/bika/health/controlpanel/bika_identifiertypes.py +++ b/bika/health/controlpanel/bika_identifiertypes.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_immunizations.py b/bika/health/controlpanel/bika_immunizations.py index 84d7c9d5..e2586d73 100644 --- a/bika/health/controlpanel/bika_immunizations.py +++ b/bika/health/controlpanel/bika_immunizations.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_insurancecompanies.py b/bika/health/controlpanel/bika_insurancecompanies.py index 5f40c5e5..2286a4ca 100644 --- a/bika/health/controlpanel/bika_insurancecompanies.py +++ b/bika/health/controlpanel/bika_insurancecompanies.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.ATContentTypes.content import schemata diff --git a/bika/health/controlpanel/bika_symptoms.py b/bika/health/controlpanel/bika_symptoms.py index 44ad151c..995664b4 100644 --- a/bika/health/controlpanel/bika_symptoms.py +++ b/bika/health/controlpanel/bika_symptoms.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_treatments.py b/bika/health/controlpanel/bika_treatments.py index 8048eb81..6cd3f56e 100644 --- a/bika/health/controlpanel/bika_treatments.py +++ b/bika/health/controlpanel/bika_treatments.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl.SecurityInfo import ClassSecurityInfo diff --git a/bika/health/controlpanel/bika_vaccinationcenters.py b/bika/health/controlpanel/bika_vaccinationcenters.py index 6708a27e..0bd8d54c 100644 --- a/bika/health/controlpanel/bika_vaccinationcenters.py +++ b/bika/health/controlpanel/bika_vaccinationcenters.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it"s authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import collections diff --git a/bika/health/fields/__init__.py b/bika/health/fields/__init__.py index 61a553b9..4f681a4e 100644 --- a/bika/health/fields/__init__.py +++ b/bika/health/fields/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. """Generic field extensions""" diff --git a/bika/health/icd9cm/__init__.py b/bika/health/icd9cm/__init__.py index 9e529b27..a08586b9 100644 --- a/bika/health/icd9cm/__init__.py +++ b/bika/health/icd9cm/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. """ICD9-CM code list diff --git a/bika/health/impress/__init__.py b/bika/health/impress/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/impress/__init__.py +++ b/bika/health/impress/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/interfaces.py b/bika/health/interfaces.py index 03167a82..2c22f957 100644 --- a/bika/health/interfaces.py +++ b/bika/health/interfaces.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.interfaces import IBikaLIMS diff --git a/bika/health/locales/af/LC_MESSAGES/senaite.core.po b/bika/health/locales/af/LC_MESSAGES/senaite.core.po index 12e69e92..af60f6a2 100644 --- a/bika/health/locales/af/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/af/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Afrikaans (https://www.transifex.com/senaite/teams/87046/af/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/af/LC_MESSAGES/senaite.health.po b/bika/health/locales/af/LC_MESSAGES/senaite.health.po index cf7356bb..7b662f9f 100644 --- a/bika/health/locales/af/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/af/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Afrikaans (https://www.transifex.com/senaite/teams/87046/af/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Lys aetiologiese oorsaak sub-tipes." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Pasiënt Inentings" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "'n Lys van pasiënt behandelings en medikasies" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "'n Lys van plekke besoek deur die pasiënt." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Aktiewe" @@ -67,7 +67,7 @@ msgstr "Aktiewe behandeling" msgid "Add" msgstr "Voeg By" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Ekstra simptome nie by ICD kodes ingesluit, kan hier ingevoer word" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Ekstra identifikasie" @@ -96,27 +96,23 @@ msgstr "Doods oorsaake" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Ouderdom" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Alle" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Geboortedatum" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Geskatte geboorte datum" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Geboorte plek" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Geboorte datum" @@ -216,7 +212,7 @@ msgstr "Besigheidsfoon" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Veranderinge gestoor" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Burgerskap" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Huwelik status" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Institute" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Konserwatiewe behandeling" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Land" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Land en provinsie" @@ -356,7 +352,7 @@ msgstr "Land en provinsie" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Datum" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Beskrywing" @@ -431,7 +427,7 @@ msgstr "Siekte" msgid "Diseases" msgstr "Siektes" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Dokter" msgid "Doctor ID" msgstr "Dokter ID" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Onbekend" msgid "Dormant" msgstr "Dormant" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Medikasie" @@ -490,7 +486,7 @@ msgstr "Medikasie" msgid "Drug Prohibition" msgstr "Medisyne verbod" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Medisyne verbod verduideliking" @@ -527,12 +523,12 @@ msgstr "Medisyne newe-effek" msgid "Drugs" msgstr "Medikasies" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "EPI nommer" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Epos" @@ -546,15 +542,7 @@ msgstr "Epos-adres" msgid "Empirical treatment" msgstr "Empiriese behandeling" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Einde" @@ -563,7 +551,7 @@ msgstr "Einde" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnisiteit" @@ -571,7 +559,7 @@ msgstr "Etnisiteit" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etnisiteit, bv. Asiaties, Europees, etc." @@ -583,21 +571,21 @@ msgstr "Verwagte / Simptomatiese behandeling" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Faks" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Kenmerk" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Vroulik" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Volle Naam" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Geslag" @@ -654,35 +642,35 @@ msgstr "Geografiese areas kan gekenmerk word as 'n hoë, intermediêre of lae vl msgid "Geographical distribution" msgstr "Geografiese verspreiding" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "ICD kode" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "ID" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "ID tipe" @@ -724,11 +712,11 @@ msgstr "ID tipe" msgid "Identifier Types" msgstr "ID tipes" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Immunisering" @@ -771,13 +755,13 @@ msgstr "Immunisering form" msgid "Immunizations" msgstr "Immuniserings" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Bekend pasiënt allergieë inligting wat medisyne reaksie interpretasie mag steun" @@ -847,11 +827,11 @@ msgstr "Bekend pasiënt allergieë inligting wat medisyne reaksie interpretasie msgid "Known undesirable effects of the drug" msgstr "Bekend ongewenste effekte" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Plek" @@ -859,11 +839,6 @@ msgstr "Plek" msgid "Male" msgstr "Manlik" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Mobiele Foon" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Moeder se naam" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Naam" @@ -917,7 +887,7 @@ msgstr "Amerikaanse Indiaan" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Inheemse Hawaiian of van Stille oseaan eilande" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "Pasiënt ID" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Ekstra Pasiënt IDs" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Pasiënt mediese geskiedenis" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pasiënte" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefoon" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Primêre Kliniek" @@ -1092,7 +1062,7 @@ msgstr "Primêre Kliniek" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Relevante feite" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Opmerkings" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "Kies 'n tipe behandeling" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Skok behandeing" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Spesifieke behandeling" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Begin" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Titel" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Behandelings" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Reis end datum" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Reis begin datum" @@ -1393,11 +1350,7 @@ msgstr "Reis begin datum" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Inenting sentrum" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Inenting sentrums" @@ -1423,14 +1376,6 @@ msgstr "Inenting sentrums" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1479,14 +1424,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ar/LC_MESSAGES/senaite.core.po b/bika/health/locales/ar/LC_MESSAGES/senaite.core.po index 7e3ad99e..aa20bf13 100644 --- a/bika/health/locales/ar/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ar/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic (https://www.transifex.com/senaite/teams/87046/ar/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ar/LC_MESSAGES/senaite.health.po b/bika/health/locales/ar/LC_MESSAGES/senaite.health.po index 3a83ae1e..5d0032c0 100644 --- a/bika/health/locales/ar/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ar/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic (https://www.transifex.com/senaite/teams/87046/ar/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/bg_BG/LC_MESSAGES/senaite.core.po b/bika/health/locales/bg_BG/LC_MESSAGES/senaite.core.po index 6d06e2b8..dc3319d4 100644 --- a/bika/health/locales/bg_BG/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/bg_BG/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/senaite/teams/87046/bg_BG/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/bg_BG/LC_MESSAGES/senaite.health.po b/bika/health/locales/bg_BG/LC_MESSAGES/senaite.health.po index a6bdfb56..002f8178 100644 --- a/bika/health/locales/bg_BG/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/bg_BG/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/senaite/teams/87046/bg_BG/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/bn/LC_MESSAGES/senaite.core.po b/bika/health/locales/bn/LC_MESSAGES/senaite.core.po index 5b9a5c11..8a75998f 100644 --- a/bika/health/locales/bn/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/bn/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (https://www.transifex.com/senaite/teams/87046/bn/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/bn/LC_MESSAGES/senaite.health.po b/bika/health/locales/bn/LC_MESSAGES/senaite.health.po index db214f64..d3ccfb8e 100644 --- a/bika/health/locales/bn/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/bn/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (https://www.transifex.com/senaite/teams/87046/bn/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ca/LC_MESSAGES/senaite.core.po b/bika/health/locales/ca/LC_MESSAGES/senaite.core.po index cfd50c18..aa79ac9f 100644 --- a/bika/health/locales/ca/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ca/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan (https://www.transifex.com/senaite/teams/87046/ca/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ca/LC_MESSAGES/senaite.health.po b/bika/health/locales/ca/LC_MESSAGES/senaite.health.po index 120017ee..c360dc02 100644 --- a/bika/health/locales/ca/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ca/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Catalan (https://www.transifex.com/senaite/teams/87046/ca/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Llista de subtipus d'agents etiològics." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Llista de vacunacions administrades al pacient." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Llista de tractaments efectuats i drogues administrades al pacient." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Llista de llocs visitats pel pacient." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Actiu/va" @@ -67,7 +67,7 @@ msgstr "Tractament actiu" msgid "Add" msgstr "Afegeix" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Aquí podeu afegir símptomes que no estiguin contemplats per codis ICD." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadors addicionals" @@ -96,27 +96,23 @@ msgstr "Agents etiològics" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edat" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Tot" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data de naixement" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "La data de naixament és estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lloc de naixement" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Data de naixement" @@ -216,7 +212,7 @@ msgstr "Telèfon del negoci" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "S'han guardat els canvis." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Nacionalitat" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estat civil" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Institucions referents" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "Col·lectius en situació de risc" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Tractament conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "País" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País i estat" @@ -356,7 +352,7 @@ msgstr "País i estat" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Data" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripció" @@ -431,7 +427,7 @@ msgstr "Malaltia" msgid "Diseases" msgstr "Malalties" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "ID del doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Desconegut" msgid "Dormant" msgstr "Inactiu" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Fàrmac" @@ -490,7 +486,7 @@ msgstr "Fàrmac" msgid "Drug Prohibition" msgstr "Contraindicacions" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicació de la contraindicació" @@ -527,12 +523,12 @@ msgstr "Efectes secundaris" msgid "Drugs" msgstr "Fàrmacs" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Correu electrònic" @@ -546,15 +542,7 @@ msgstr "Adreça de correu electrònic" msgid "Empirical treatment" msgstr "Tractament empíric" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fi" @@ -563,7 +551,7 @@ msgstr "Fi" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Ètnia" @@ -571,7 +559,7 @@ msgstr "Ètnia" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Ètnia (per exemple Asiàtic, Africà, etc.)" @@ -583,21 +571,21 @@ msgstr "Tractament preventiu/simptomàtic" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Dona" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nom complet" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Gènere" @@ -654,35 +642,35 @@ msgstr "Les àrees geogràfiques es poden caracteritzar per tenir un nivell d'in msgid "Geographical distribution" msgstr "Distribució geogràfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Espanyol o Llatí" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "Codi ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipus d'identificador" @@ -724,11 +712,11 @@ msgstr "Tipus d'identificador" msgid "Identifier Types" msgstr "Tipus d'identificadors" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Immunització" @@ -771,13 +755,13 @@ msgstr "Forma d'immunització" msgid "Immunizations" msgstr "Immunitzacions" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Al·lèrgies conegudes del pacient. Aquesta informació pot servir per interpretar la reacció davant de determinats fàrmacs" @@ -847,11 +827,11 @@ msgstr "Al·lèrgies conegudes del pacient. Aquesta informació pot servir per i msgid "Known undesirable effects of the drug" msgstr "Efectes no desitjats coneguts del fàrmac" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Localització" @@ -859,11 +839,6 @@ msgstr "Localització" msgid "Male" msgstr "Home" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Telèfon mòbil" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Segon cognom" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nom" @@ -917,7 +887,7 @@ msgstr "Nadiu americà" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Nadiu de Hawaii o d'altres illes del Pacífic" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID del pacient" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificadors addicionals del pacient" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historial mèdic del pacient." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacients" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telèfon" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Fotografia" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referent primari" @@ -1092,7 +1062,7 @@ msgstr "Referent primari" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Fets rellevants" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Comentaris" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "Seleccioneu un tipus d'immunització.
La immunització activa impli msgid "Select a type of treatment." msgstr "Selecciona un tipus de tractament." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Tractament de xoc" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tractament específic" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Inici" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Títol" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Tractaments" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Data de finalització" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Data d'inici" @@ -1393,11 +1350,7 @@ msgstr "Data d'inici" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centre de vacunacions" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centres de vacunacions" @@ -1423,14 +1376,6 @@ msgstr "Centres de vacunacions" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1479,14 +1424,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/cs/LC_MESSAGES/senaite.core.po b/bika/health/locales/cs/LC_MESSAGES/senaite.core.po index fa89a84e..ae37cb19 100644 --- a/bika/health/locales/cs/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/cs/LC_MESSAGES/senaite.core.po @@ -1,10 +1,12 @@ +# Translators: +# trendspotter , 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: trendspotter , 2020\n" "Language-Team: Czech (https://www.transifex.com/senaite/teams/87046/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,1062 +20,1004 @@ msgstr "" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "Seznam podtypů etiologických příčin." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "Seznam imunizací podaných pacientovi." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "Seznam léčby a léků podávaných pacientovi." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." -msgstr "" +msgstr "Seznam míst navštívených pacientem." #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "Aktivní" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "Aktivní imunizace" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "Aktivní léčba" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "Přidat" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" -msgstr "" +msgstr "Další ID" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "Zde lze zadat další příznaky, na které se kódy ICD nevztahují." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" -msgstr "" +msgstr "Další identifikátory" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "Další poznámky" #: bika/health/controlpanel/bika_aetiologicagents.py:44 msgid "Aetiologic Agents" -msgstr "" +msgstr "Etiologické příčiny" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Etiologická příčina" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" -msgstr "" - -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "Věk" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" -msgstr "" +msgstr "Vše" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Povolit distribuci výsledků pacientům" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Povolit distribuci výsledků tomuto pacientovi" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" -msgstr "" +msgstr "Anonymní" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Platí pro" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "Vhodné dávky a dávkování" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "Asiat" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Přiřaďte lékaře ke klientovi. Tento lékař nebude přístupný od jiných klientů." #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "Dávka" #. Default: "Case ID" msgid "Batch ID" -msgstr "" +msgstr "Batch ID" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "Dávky" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" -msgstr "" +msgstr "Datum narození" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" -msgstr "" +msgstr "Datum narození se odhaduje" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" -msgstr "" +msgstr "Místo narození" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" -msgstr "" +msgstr "Datum narození" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "Černá" #: bika/health/config.py:45 msgid "Both" -msgstr "" +msgstr "Obojí" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "Firemní telefon" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "CPID" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" -msgstr "" +msgstr "Případ" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 msgid "Case ID" -msgstr "" +msgstr "ID případu" #: bika/health/controlpanel/bika_caseoutcomes.py:44 msgid "Case Outcomes" -msgstr "" +msgstr "Výsledky případu" #: bika/health/controlpanel/bika_casestatuses.py:44 msgid "Case Statuses" -msgstr "" +msgstr "Stavy případů" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "Klasifikace případových syndromů" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "Výsledek případu" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "Stav případu" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "Případy" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "Kategorie" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "Kauzální léčba" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "Změny uloženy." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Zkontrolujte, zda se u pacienta mohou projevit různé úrovně stresu (žádný, mírný, střední, závažný) symptomu" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" -msgstr "" +msgstr "Státní občanství" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" -msgstr "" +msgstr "Rodinný stav" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" -msgstr "" +msgstr "Klient" #: bika/health/content/batch.py:366 msgid "Client Case ID" -msgstr "" +msgstr "ID případu klienta" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "ID klienta" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" -msgstr "" +msgstr "PID klienta" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" -msgstr "" +msgstr "ID pacienta klienta" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "ID pacienta klienta musí být jedinečné" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "Klienti" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" -msgstr "" +msgstr "Kód" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "Rizikové kolektivy" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Jméno společnosti" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" -msgstr "" +msgstr "Souhlas na SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "Konzervativní léčba" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" -msgstr "" +msgstr "Země" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" -msgstr "" +msgstr "Země a stát" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" -msgstr "" +msgstr "Datum" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "Výchozí" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "Výchozí předvolby publikace pro pacienty" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "Popisek" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "Nemoc" #: bika/health/controlpanel/bika_diseases.py:49 msgid "Diseases" -msgstr "" +msgstr "Nemoci" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" -msgstr "" +msgstr "Okres" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "Lékař" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "ID Lékaře" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "Pole Lékař je povinné v případech" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "Lékaři" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "ID dokumentu" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "Umístění dokumentu" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "Typ dokumentu" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "Verze dokumentu" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "Nevím" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "" +msgstr "Latentní" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "léčivo" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "Zákaz léků" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "Vysvětlení zákazu léčiva" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "Vysvětlení zákazu léčiv" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "Indikace léků" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "Dávkování léků" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "Uchování léčiv" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "Vedlejší účinky léku" #: bika/health/controlpanel/bika_drugs.py:49 msgid "Drugs" -msgstr "" +msgstr "Léky" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" -msgstr "" +msgstr "Číslo EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "E-mail" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "e-mailová adresa" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" - -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" +msgstr "Empirická léčba" -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" -msgstr "" +msgstr "Konec" #: bika/health/controlpanel/bika_ethnicities.py:44 msgid "Ethnicities" -msgstr "" +msgstr "Etnicity" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" -msgstr "" +msgstr "Ethnicita" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "Název etnicity" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "Ethnicita např. Asiat, Afričan atd." #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "Nastávající / symptomatická léčba" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Neúspěšné volání Ajaxu: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" -msgstr "" +msgstr "Jméno otce" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" -msgstr "" +msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" -msgstr "" +msgstr "Vlastnost" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" -msgstr "" +msgstr "Stop / palců" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "Žena" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "Soubor" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Přiložit přílohy k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienta, pokud je tato možnost povolena" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Přiložte přílohy k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienty, pokud je tato možnost povolena. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Přílohy k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienty, pokud je tato možnost povolena. Toto nastavení lze přepsat na kartě Pacientovy předvolby publikování." #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "Celé jméno" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "Celé jméno" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "Pohlaví" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "Geografické oblasti lze charakterizovat jako oblasti s vysokou, střední nebo nízkou úrovní infekce." #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "Zeměpisné rozdělení" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" -msgstr "" +msgstr "ID ručitele" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" -msgstr "" +msgstr "Jméno ručitele" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "Telefon ručitele (firemní)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "Telefon ručitele (domů)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "Telefon ručitele (mobilní)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" -msgstr "" +msgstr "Příjmení ručitele" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" -msgstr "" +msgstr "Poštovní adresa ručitele" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "Hispánský nebo latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" -msgstr "" +msgstr "Historické výsledky" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "Hodiny půstu" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "ICD kód" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" -msgstr "" +msgstr "Identifikátor" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" -msgstr "" +msgstr "Typ identifikátoru" #: bika/health/controlpanel/bika_identifiertypes.py:45 msgid "Identifier Types" -msgstr "" +msgstr "Typy identifikátorů" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také zprávy o výsledcích." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také výsledky. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také zprávy o výsledcích. Toto nastavení lze přepsat na kartě „Publikační preference“ pacienta." -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "Pokud je zaškrtnuto, nastavení budou zděděna od klienta, takže budou vyplněny i další změny v tomto nastavení pro klienta." #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" - -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "Pokud je zaškrtnuto, nastavení pro distribuci hlášení o výsledcích pacientům bude zděděno z Nastavení Bika, takže budou vyplněny i další změny v Nastavení Bika pro toto nastavení." -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "Pokud je zaškrtnuto, faktury budou zaslány pojišťovně. V tomto případě bude číslo pojištění povinné." -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "Pokud je tato možnost vybrána, budou ID pacienta klienta nucena být jedinečná" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "Imunizace" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "Imunizační formulář" #: bika/health/controlpanel/bika_immunizations.py:49 msgid "Immunizations" -msgstr "" +msgstr "Imunizace" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" -msgstr "" +msgstr "Neaktivní" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" -msgstr "" +msgstr "Palce" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "Nesprávný formát dat v '${title}' by měl být RRRR-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" -msgstr "" +msgstr "Zdědí výchozí nastavení" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "Zdědí výchozí nastavení pro distribuci výsledků pacienta" #: bika/health/controlpanel/bika_insurancecompanies.py:43 msgid "Insurance Companies" -msgstr "" +msgstr "Pojišťovací společnosti" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" -msgstr "" +msgstr "Pojišťovna" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" -msgstr "" +msgstr "Číslo pojištění" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "Datum faktury" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "Číslo faktury" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "Faktury" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" - -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" +msgstr "Nepravidelný" -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "Známé alergie pacienta k uchování informace, které mohou pomoci interpretaci reakce na léčivo" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "Známé nežádoucí účinky léku" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" -msgstr "" +msgstr "Lbs" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" -msgstr "" +msgstr "Místo" #: bika/health/config.py:28 msgid "Male" -msgstr "" - -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" +msgstr "Muž" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "mobilní telefon" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "Mobilní telefon" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" -msgstr "" +msgstr "Jméno matky" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" -msgstr "" +msgstr "Jméno" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "Rodilý Američan" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "Nativní havajský nebo jiný Pacifik ostrovan" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "Žádný menstruační cyklus" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "Není definováno žádné ID požadavku" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "Objektivní klinické nálezy" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "Počátek" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "Datum nástupu" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "Odhadované datum nástupu" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "PID" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "Paliativní léčba" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "Parametr '%s' chybí" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "Pasivní imunizace" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "Pacient" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "Věk pacienta v den začátku případu" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "Soubory pacientů" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" -msgstr "" +msgstr "ID pacienta" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" -msgstr "" +msgstr "Další identifikátory pacienta" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" -msgstr "" +msgstr "Jednotky výšky stavu pacienta" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" -msgstr "" +msgstr "Míry pacienta v pase" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" -msgstr "" +msgstr "Hmotnostní jednotky stavu pacienta" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." -msgstr "" +msgstr "Historie pacienta v minulosti." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" -msgstr "" +msgstr "Pacienti" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" -msgstr "" +msgstr "Telefon" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" -msgstr "" +msgstr "Fotografie" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "Opravte uvedené chyby." #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "Prevence" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "Preventivní / profylaktická léčba" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" -msgstr "" +msgstr "Primární referrer" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" -msgstr "" +msgstr "Kraj" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "Prozatímní diagnostika" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "Racionální léčba" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "Pravidelný" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "Relevantní fakta" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" +msgstr "Poznámky" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" -msgstr "" +msgstr "Přílohy výsledků jsou povoleny" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "Vyberte typ imunizace.
Aktivní imunizace znamená zavedení cizí molekuly do těla, což způsobí, že samotné tělo vytvoří imunitu proti cíli. Očkování je aktivní forma imunizace
Pasivní imunizace je místo, kde jsou předem syntetizované prvky imunitního systému přeneseny na osobu, takže tělo tyto prvky nemusí produkovat samo. V současné době mohou být protilátky použity k pasivní imunizaci" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "Vybrat typ léčby." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Vyberte preferované kanály, které se mají použít pro zasílání zpráv o výsledcích pacientům. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Vyberte preferované kanály, které se mají použít pro zasílání zpráv o výsledcích pacientům. Toto nastavení lze přepsat na kartě Pacientovy předvolby publikování." -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "Zaslat faktury pojišťovně." #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "Služba %s pro %s nebyla nalezena " #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "Služba není definována" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "Přípustné úrovně závažnosti" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "Šoková léčba" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" - -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "Mělo by být pole Lékař při vytváření případu povinné?" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "Specifická léčba" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" -msgstr "" +msgstr "Začátek" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "Subjektivní klinické nálezy" #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "Mezisoučet" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "Podtyp" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "Podpůrná léčba" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "Příznak" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "Příznaky" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "Příznaky a podobně, pro které je léčivo vhodné" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "Identifikační číslo (Pojistné číslo) od osoby, jejíž smlouva se týká současného pacienta." -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "Pacient a ručitel jsou stejní." -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." -msgstr "" +msgstr "Garantem je pacient." #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "Název" #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "Celkem" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "Přenos" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "Léčba" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "Dokument léčby" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "Léčebná péče" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "Léčebná procedura" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "Typ léčby" #: bika/health/controlpanel/bika_treatments.py:49 msgid "Treatments" -msgstr "" +msgstr "Léčby" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" -msgstr "" +msgstr "Datum ukončení cesty" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" -msgstr "" +msgstr "Datum zahájení cesty" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "Použijte symbol '/' pro povolení odesílání více jednotek" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "Uživatelské jméno" #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "DPH" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" -msgstr "" +msgstr "Vakcinační centrum" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" -msgstr "" +msgstr "Vakcinační centra" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "Ověření se nezdařilo: '${value}' není unikátní" #: bika/health/config.py:38 msgid "White" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" +msgstr "Bílá" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "uchování" diff --git a/bika/health/locales/cs/LC_MESSAGES/senaite.health.po b/bika/health/locales/cs/LC_MESSAGES/senaite.health.po index ef84eed1..e62087e1 100644 --- a/bika/health/locales/cs/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/cs/LC_MESSAGES/senaite.health.po @@ -1,10 +1,12 @@ +# Translators: +# trendspotter , 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: trendspotter , 2020\n" "Language-Team: Czech (https://www.transifex.com/senaite/teams/87046/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,1494 +20,1432 @@ msgstr "" #: bika/health/impress/reports/Default.pt:295 msgid "(estimated)" -msgstr "" +msgstr "(odhad)" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:29 msgid "-" -msgstr "" +msgstr "-" #: bika/health/content/aetiologicagent.py:41 msgid "A list of aetiologic agent subtypes." -msgstr "" +msgstr "Seznam podtypů etiologických příčin." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." -msgstr "" +msgstr "Seznam imunizací podaných pacientovi." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." -msgstr "" +msgstr "Seznam léčby a léků podávaných pacientovi." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." -msgstr "" +msgstr "Seznam míst navštívených pacientem." #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Activate" -msgstr "" +msgstr "aktivovat" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" -msgstr "" +msgstr "Aktivní" #: bika/health/content/immunization.py:131 msgid "Active immunization" -msgstr "" +msgstr "Aktivní imunizace" #: bika/health/content/treatment.py:99 msgid "Active treatment" -msgstr "" +msgstr "Aktivní léčba" #: bika/health/browser/doctors/folder_view.py:81 #: bika/health/browser/patient/batches.py:50 #: bika/health/browser/patient/files.py:55 msgid "Add" -msgstr "" +msgstr "Přidat" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" -msgstr "" +msgstr "Další ID" #: bika/health/controlpanel/bika_symptoms.py:51 msgid "Additional Symptoms not covered by ICD codes, can be entered here." -msgstr "" +msgstr "Zde lze zadat další příznaky, na které se kódy ICD nevztahují." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" -msgstr "" +msgstr "Další identifikátory" #: bika/health/content/batch.py:209 msgid "Additional notes" -msgstr "" +msgstr "Další poznámky" #: bika/health/impress/reports/Default.pt:306 msgid "Address" -msgstr "" +msgstr "Adresa" #: bika/health/controlpanel/bika_aetiologicagents.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Aetiologic Agents" -msgstr "" +msgstr "Etiologické příčiny" #: bika/health/content/batch.py:239 msgid "Aetiologic agent" -msgstr "" +msgstr "Etiologická příčina" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" -msgstr "" - -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" +msgstr "Věk" #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" -msgstr "" +msgstr "Vše" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" -msgstr "" +msgstr "Povolit distribuci výsledků pacientům" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" -msgstr "" +msgstr "Povolit distribuci výsledků tomuto pacientovi" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:83 msgid "Analysis Profiles" -msgstr "" +msgstr "Profily analýzy" #: bika/health/impress/reports/Default.pt:126 msgid "Analysis Report" -msgstr "" +msgstr "Zpráva o analýze" #: bika/health/impress/reports/Default.pt:702 msgid "Analysis results relate only to the samples tested." -msgstr "" +msgstr "Výsledky analýzy se týkají pouze testovaných vzorků." -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" -msgstr "" +msgstr "Anonymní" #: bika/health/content/symptom.py:43 msgid "Applies to" -msgstr "" +msgstr "Platí pro" #: bika/health/content/drug.py:60 msgid "Appropriate doses and dosage" -msgstr "" +msgstr "Vhodné dávky a dávkování" #: bika/health/config.py:35 msgid "Asian" -msgstr "" +msgstr "Asiat" #: bika/health/content/doctor.py:53 msgid "Associate the doctor to a client. This doctor will not be accessible from other clients." -msgstr "" +msgstr "Přiřaďte lékaře ke klientovi. Tento lékař nebude přístupný od jiných klientů." #: bika/health/impress/reports/Default.pt:607 msgid "Attachment for" -msgstr "" +msgstr "Příloha pro " #: bika/health/impress/reports/Default.pt:591 msgid "Attachments for ${DYNAMIC_CONTENT}" -msgstr "" +msgstr "Přílohy pro ${DYNAMIC_CONTENT}" #: bika/health/impress/reports/Default.pt:26 msgid "Attachments per Row" -msgstr "" +msgstr "Přílohy na řádek" #. Default: "Case" msgid "Batch" -msgstr "" +msgstr "Dávka" #: bika/health/browser/batch/publish.pt:52 msgid "Batch ID" -msgstr "" +msgstr "ID dávky" #: bika/health/impress/reports/Default.pt:436 msgid "Batch Labels" -msgstr "" +msgstr "Dávkové štítky" #. Default: "Cases" msgid "Batches" -msgstr "" +msgstr "Dávky" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" -msgstr "" +msgstr "Datum narození" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" -msgstr "" +msgstr "Datum narození se odhaduje" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" -msgstr "" +msgstr "Místo narození" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" -msgstr "" +msgstr "Datum narození" #: bika/health/config.py:36 msgid "Black" -msgstr "" +msgstr "Černá" #: bika/health/config.py:45 #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:219 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:73 msgid "Both" -msgstr "" +msgstr "Obojí" #: bika/health/browser/doctors/folder_view.py:62 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:54 msgid "Business Phone" -msgstr "" +msgstr "pracovní telefon" #: bika/health/content/analysisrequest.py:93 #: bika/health/content/batch.py:134 msgid "CPID" -msgstr "" +msgstr "CPID" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" -msgstr "" +msgstr "Případ" #: bika/health/browser/analysisrequests/view.py:49 #: bika/health/browser/patient/analysisrequests.py:33 #: bika/health/impress/reports/Default.pt:385 msgid "Case ID" -msgstr "" +msgstr "ID případu" #: bika/health/controlpanel/bika_caseoutcomes.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Outcomes" -msgstr "" +msgstr "Výsledky případu" #: bika/health/controlpanel/bika_casestatuses.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Case Statuses" -msgstr "" +msgstr "Stavy případů" #: bika/health/controlpanel/bika_casesyndromicclassifications.py:47 msgid "Case Syndromic Classifications" -msgstr "" +msgstr "Klasifikace Syndromových případů" #: bika/health/content/batch.py:223 msgid "Case outcome" -msgstr "" +msgstr "Výsledek případu" #: bika/health/content/batch.py:216 msgid "Case status" -msgstr "" +msgstr "Stav případu" #: bika/health/browser/batchfolder.py:44 msgid "Cases" -msgstr "" +msgstr "Případy" #: bika/health/content/drug.py:38 msgid "Category" -msgstr "" +msgstr "Kategorie" #: bika/health/content/treatment.py:100 msgid "Causal treatment" -msgstr "" +msgstr "Kauzální léčba" #: bika/health/skins/bika_health/validate_integrity.cpy:26 msgid "Changes saved." -msgstr "" +msgstr "Změny uloženy." #: bika/health/content/symptom.py:51 msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" -msgstr "" +msgstr "Zjistěte, zda se u pacienta mohou projevit různé úrovně stresu (žádný, mírný, střední, závažný) symptomu" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" -msgstr "" +msgstr "Státní občanství" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" -msgstr "" +msgstr "Rodinný stav" #: bika/health/browser/batch/publish.pt:60 #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 msgid "Client" -msgstr "" +msgstr "Klient" #: bika/health/content/batch.py:366 #: bika/health/impress/reports/Default.pt:362 msgid "Client Case ID" -msgstr "" +msgstr "ID případu klienta" #. Default: "Client ID" msgid "Client ID" -msgstr "" +msgstr "ID klienta" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:105 msgid "Client Order Number" -msgstr "" +msgstr "Číslo objednávky klienta" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" -msgstr "" +msgstr "PID klienta" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" -msgstr "" +msgstr "ID klienta pacienta" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" -msgstr "" +msgstr "ID pacienta klienta musí být jedinečné" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:56 msgid "Client Reference" -msgstr "" +msgstr "Reference klienta" #: bika/health/impress/reports/Default.pt:370 msgid "Client Sample ID" -msgstr "" +msgstr "ID vzorku klienta" #. Default: "Clients" msgid "Clients" -msgstr "" +msgstr "Klienti" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" -msgstr "" +msgstr "Kód" #: bika/health/content/immunization.py:94 msgid "Collectives at risk" -msgstr "" +msgstr "Rizikové kolektivy" #: bika/health/controlpanel/bika_insurancecompanies.py:52 msgid "Company Name" -msgstr "" +msgstr "Název společnosti" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" -msgstr "" +msgstr "Souhlas na SMS" #: bika/health/content/treatment.py:101 msgid "Conservative treatment" -msgstr "" +msgstr "Konzervativní léčba" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" -msgstr "" +msgstr "Země" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" -msgstr "" +msgstr "Země a stát" #: bika/health/impress/reports/Default.pt:21 msgid "Custom Report Options" -msgstr "" +msgstr "Možnosti vlastních sestav Zpráv" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" -msgstr "" +msgstr "Datum" #: bika/health/impress/reports/Default.pt:409 msgid "Date Collected" -msgstr "" +msgstr "Datum shromáždění" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:132 #: bika/health/impress/reports/Default.pt:421 msgid "Date Published" -msgstr "" +msgstr "Datum Publikování" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:96 #: bika/health/impress/reports/Default.pt:413 msgid "Date Received" -msgstr "" +msgstr "Datum přijetí" #: bika/health/impress/reports/Default.pt:417 msgid "Date Verified" -msgstr "" +msgstr "Datum ověřeno" #: bika/health/impress/reports/Default.pt:292 msgid "Date of Birth" -msgstr "" +msgstr "Datum narození" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:20 msgid "Day 1" -msgstr "" +msgstr "Den 1" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:31 msgid "Day 2" -msgstr "" +msgstr "Den 2" #: bika/health/skins/bika_health/bika_health_widgets/casebasalbodytempwidget.pt:42 msgid "Day 3" -msgstr "" +msgstr "Den 3" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:59 msgid "Days" -msgstr "" +msgstr "Dnů" #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Deactivate" -msgstr "" +msgstr "Deaktivovat" #: bika/health/browser/insurancecompany/invoicefolder.py:70 msgid "Default" -msgstr "" +msgstr "Výchozí" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" -msgstr "" +msgstr "Výchozí předvolby publikace pro pacienty" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" -msgstr "" +msgstr "Popis" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:197 msgid "Discount" -msgstr "" +msgstr "Sleva" #: bika/health/controlpanel/bika_diseases.py:58 msgid "Disease" -msgstr "" +msgstr "Nemoc" #: bika/health/controlpanel/bika_diseases.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Diseases" -msgstr "" +msgstr "Nemoci" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" -msgstr "" +msgstr "Okres" #: bika/health/browser/analysisrequests/view.py:62 #: bika/health/browser/batchfolder.py:122 #: bika/health/content/analysisrequest.py:54 msgid "Doctor" -msgstr "" +msgstr "Lékař" #: bika/health/browser/doctors/folder_view.py:46 #: bika/health/content/batch.py:104 #: bika/health/content/doctor.py:42 msgid "Doctor ID" -msgstr "" +msgstr "ID Lékař" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" -msgstr "" +msgstr "Pole Lékař je povinné v případech" #: bika/health/browser/doctors/folder_view.py:40 msgid "Doctors" -msgstr "" +msgstr "Lékaři" #: bika/health/browser/patient/files.py:67 msgid "Document ID" -msgstr "" +msgstr "ID dokumentu" #: bika/health/browser/patient/files.py:71 msgid "Document Location" -msgstr "" +msgstr "Umístění dokumentu" #: bika/health/browser/patient/files.py:73 msgid "Document Type" -msgstr "" +msgstr "Typ dokumentu" #: bika/health/browser/patient/files.py:69 msgid "Document Version" -msgstr "" +msgstr "Verze dokumentu" #: bika/health/config.py:30 msgid "Don't Know" -msgstr "" +msgstr "Nevíme" #: bika/health/browser/doctors/folder_view.py:89 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:70 #: bika/health/controlpanel/bika_aetiologicagents.py:68 msgid "Dormant" -msgstr "" +msgstr "Latentní" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" -msgstr "" +msgstr "Léčivo" #: bika/health/controlpanel/bika_drugprohibitions.py:58 msgid "Drug Prohibition" -msgstr "" +msgstr "Zákaz léků" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" -msgstr "" +msgstr "Vysvětlení zákazu léčiv" #: bika/health/controlpanel/bika_drugprohibitions.py:49 msgid "Drug Prohibition Explanations" -msgstr "" +msgstr "Vysvětlení zákazu léčiv" #: bika/health/profiles/default/controlpanel.xml msgid "Drug Prohibitions" -msgstr "" +msgstr "Zakázané léky" #. Default: "Indications" #: bika/health/content/drug.py:47 msgid "Drug indications" -msgstr "" +msgstr "Indikace léků" #. Default: "Posology" #: bika/health/content/drug.py:58 msgid "Drug posology" -msgstr "" +msgstr "Dávkování léků" #. Default: "Preservation" #: bika/health/content/drug.py:80 msgid "Drug preservation" -msgstr "" +msgstr "Uchování léčiv" #. Default: "Side effects" #: bika/health/content/drug.py:69 msgid "Drug side effects" -msgstr "" +msgstr "Vedlejší účinky léku" #: bika/health/controlpanel/bika_drugs.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Drugs" -msgstr "" +msgstr "Léky" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" -msgstr "" +msgstr "EPI číslo" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" -msgstr "" +msgstr "E-mail" #: bika/health/browser/doctors/folder_view.py:60 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:53 msgid "Email Address" -msgstr "" +msgstr "E-mailová adresa" #: bika/health/content/treatment.py:102 msgid "Empirical treatment" -msgstr "" - -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" +msgstr "Empirická léčba" -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" -msgstr "" +msgstr "Konec" #: bika/health/controlpanel/bika_ethnicities.py:44 #: bika/health/profiles/default/controlpanel.xml msgid "Ethnicities" -msgstr "" +msgstr "Etnicita" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" -msgstr "" +msgstr "Etnicita" #: bika/health/controlpanel/bika_ethnicities.py:53 msgid "Ethnicity Name" -msgstr "" +msgstr "Název etnicity" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." -msgstr "" +msgstr "Ethnicita např. Asiat, Afričan atd." #: bika/health/content/treatment.py:103 msgid "Expectant/Symptomatic treatment" -msgstr "" +msgstr "Nastávající / symptomatická léčba" #: bika/health/ajax/ajaxhandler.py:74 msgid "Failed ajax call: %s" -msgstr "" +msgstr "Neúspěšné volání Ajaxu: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" -msgstr "" +msgstr "Jméno otce" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" -msgstr "" +msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" -msgstr "" +msgstr "Vlastnost" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" -msgstr "" +msgstr "Stop / palců" #: bika/health/config.py:29 msgid "Female" -msgstr "" +msgstr "Žena" #: bika/health/browser/patient/files.py:75 msgid "File" -msgstr "" +msgstr "Soubor" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" -msgstr "" +msgstr "Přiložte přílohy k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienta, pokud je tato možnost povolena" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Přiložte soubory k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienty, pokud je tato možnost povolena. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:72 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Přiložte přílohy k výsledkům, např. fotografie z mikroskopu budou zahrnuty do e-mailů pro pacienty, pokud je tato možnost povolena. Toto nastavení lze přepsat na kartě Pacientovy předvolby publikování." #: bika/health/impress/reports/Default.pt:614 msgid "Filename:" -msgstr "" +msgstr "Název souboru:" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:21 msgid "First day of last menses" -msgstr "" +msgstr "První den poslední menstruace" #: bika/health/browser/doctors/folder_view.py:50 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:52 #: bika/health/content/batch.py:105 msgid "Full Name" -msgstr "" +msgstr "Celé jméno" #: bika/health/content/analysisrequest.py:97 #: bika/health/content/batch.py:307 msgid "Fullname" -msgstr "" +msgstr "Celé jméno" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" -msgstr "" +msgstr "Pohlaví" #: bika/health/content/immunization.py:66 msgid "Geographical areas can be characterized as having high, intermediate or low levels of infection." -msgstr "" +msgstr "Geografické oblasti lze charakterizovat jako oblasti s vysokou, střední nebo nízkou úrovní infekce." #: bika/health/content/immunization.py:65 msgid "Geographical distribution" -msgstr "" +msgstr "Zeměpisné rozdělení" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" -msgstr "" +msgstr "ID ručitele" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" -msgstr "" +msgstr "Jméno ručitele" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" -msgstr "" +msgstr "Telefon ručitele (pracovní)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" -msgstr "" +msgstr "Telefon ručitele (domů)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" -msgstr "" +msgstr "Telefon ručitele (mobilní)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" -msgstr "" +msgstr "Příjmení ručitele" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" -msgstr "" +msgstr "Poštovní adresa ručitele" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" -msgstr "" +msgstr "Rozšíření o zdravotní péči pro SENAITE" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:20 msgid "Height" -msgstr "" +msgstr "Výška" #: bika/health/config.py:39 msgid "Hispanic or Latino" -msgstr "" +msgstr "Hispánský nebo latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" -msgstr "" +msgstr "Historické výsledky" #: bika/health/content/batch.py:261 msgid "Hours fasting" -msgstr "" +msgstr "Hodiny půstu" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:55 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:32 msgid "Hysterectomy" -msgstr "" +msgstr "Hysterektomie" #: bika/health/content/disease.py:38 msgid "ICD Code" -msgstr "" +msgstr "ICD kód" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" -msgstr "" +msgstr "Identifikátor" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" -msgstr "" +msgstr "Typ identifikátoru" #: bika/health/controlpanel/bika_identifiertypes.py:45 #: bika/health/profiles/default/controlpanel.xml msgid "Identifier Types" -msgstr "" +msgstr "Typy identifikátorů" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také zprávy o výsledcích." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také zprávy o výsledcích. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:51 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Pokud je zaškrtnuto, pacientovi budou automaticky zaslány také zprávy o výsledcích. Toto nastavení lze přepsat na kartě „Publikační preference“ pacienta." -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." -msgstr "" +msgstr "Pokud je zaškrtnuto, nastavení budou zděděna od klienta, takže budou vyplněny i další změny v tomto nastavení pro klienta." #: bika/health/content/client.py:41 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." -msgstr "" - -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" +msgstr "Pokud je zaškrtnuto, nastavení pro distribuci hlášení o výsledcích pacientům bude zděděno z Bika Setup, takže budou vyplněny i další změny v Bika Setup pro toto nastavení." -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." -msgstr "" +msgstr "Pokud je zaškrtnuto, faktury budou zaslány pojišťovně. V tomto případě bude číslo pojištění povinné." -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" -msgstr "" +msgstr "Pokud je tato možnost vybrána, budou klientská ID pacienta nucena být jedinečná" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" -msgstr "" +msgstr "Imunizace" #. Default: "Type" #: bika/health/content/immunization.py:38 msgid "Immunization form" -msgstr "" +msgstr "Imunizační formulář" #: bika/health/controlpanel/bika_immunizations.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Immunizations" -msgstr "" +msgstr "Imunizace" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" -msgstr "" +msgstr "Neaktivní" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" -msgstr "" +msgstr "Palce" #: bika/health/validators.py:52 msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" -msgstr "" +msgstr "Nesprávný formát datumu v '${title}' by měl být RRRR-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" -msgstr "" +msgstr "Zdědit výchozí nastavení" #: bika/health/content/client.py:40 msgid "Inherit default settings for Patient results distribution" -msgstr "" +msgstr "Zdědit výchozí nastavení pro distribuci výsledků pacienta" #: bika/health/controlpanel/bika_insurancecompanies.py:43 #: bika/health/profiles/default/controlpanel.xml msgid "Insurance Companies" -msgstr "" +msgstr "Pojišťovny" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" -msgstr "" +msgstr "Pojišťovna" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" -msgstr "" +msgstr "Číslo pojištěnce" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:17 msgid "Invoice" -msgstr "" +msgstr "faktura" #: bika/health/browser/insurancecompany/invoicefolder.py:58 msgid "Invoice Date" -msgstr "" +msgstr "Datum faktury" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:45 msgid "Invoice ID" -msgstr "" +msgstr "ID faktury" #: bika/health/browser/insurancecompany/invoicefolder.py:54 msgid "Invoice Number" -msgstr "" +msgstr "Číslo faktury" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:30 msgid "Invoice To" -msgstr "" +msgstr "Faktura komu" #: bika/health/browser/insurancecompany/invoicefolder.py:46 msgid "Invoices" -msgstr "" +msgstr "Faktury" #: bika/health/config.py:50 msgid "Irregular" -msgstr "" +msgstr "Nepravidelný" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" -msgstr "" +msgstr "Známé informace k uchování o alergiích pacienta, které mohou pomoci interpretaci reakce na léčivo" #: bika/health/content/drug.py:71 msgid "Known undesirable effects of the drug" -msgstr "" +msgstr "Známé nežádoucí účinky léku" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" -msgstr "" +msgstr "Lbs" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" -msgstr "" +msgstr "Místo" #: bika/health/config.py:28 msgid "Male" -msgstr "" - -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" +msgstr "Muž" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" -msgstr "" +msgstr "Typ menstruačního cyklu" #: bika/health/impress/reports/Default.pt:697 msgid "Methods included in the ${accreditation_body} schedule of Accreditation for this Laboratory. Analysis remarks are not accredited" -msgstr "" +msgstr "Metody zahrnuté v harmonogramu akreditace pro tuto laboratoř ${accreditation_body}. Poznámky k analýze nejsou akreditovány" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:24 msgid "Mild" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" +msgstr "Mírný" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" -msgstr "" +msgstr "Mobilní telefon" #: bika/health/browser/doctors/folder_view.py:64 msgid "MobilePhone" -msgstr "" +msgstr "Mobilní telefon" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:26 msgid "Moderate" -msgstr "" +msgstr "Mírný" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:46 msgid "Month" -msgstr "" +msgstr "Měsíc" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:52 msgid "Months" -msgstr "" +msgstr "Měsíce" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" -msgstr "" +msgstr "Jméno matky" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" -msgstr "" +msgstr "Jméno" #: bika/health/config.py:34 msgid "Native American" -msgstr "" +msgstr "Původní američan" #: bika/health/config.py:37 msgid "Native Hawaiian or Other Pacific Islander" -msgstr "" +msgstr "Rodilý havajský nebo jiný pacifický ostrovan" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" -msgstr "" +msgstr "Nebyly nalezeny žádné historické výsledky" #: bika/health/config.py:51 msgid "No menstrual cycle" -msgstr "" +msgstr "Žádný menstruační cyklus" #: bika/health/ajax/ajaxhandler.py:60 msgid "No request id defined" -msgstr "" +msgstr "Není definováno žádné ID požadavku" #: bika/health/impress/reports/Default.pt:684 msgid "Not invoiced" -msgstr "" +msgstr "Nevyfakturováno" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:70 msgid "Num" -msgstr "" +msgstr "Počet" #: bika/health/impress/reports/Default.pt:36 msgid "Number of attachments rendered within one row per Sample" -msgstr "" +msgstr "Počet příloh vykreslených v jednom řádku na vzorek" #: bika/health/content/treatment.py:79 msgid "Objective clinical findings" -msgstr "" +msgstr "Objektivní klinické nálezy" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:214 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:68 msgid "One" -msgstr "" +msgstr "Jeden" #: bika/health/content/batch.py:172 msgid "Onset" -msgstr "" +msgstr "Počátek" #: bika/health/browser/batchfolder.py:127 #: bika/health/content/batch.py:146 msgid "Onset Date" -msgstr "" +msgstr "Datum nástupu" #: bika/health/content/batch.py:157 msgid "Onset Date Estimated" -msgstr "" +msgstr "Odhadované datum nástupu" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:67 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:58 msgid "Ovaries removed" -msgstr "" +msgstr "Ovarie odstraněny" #: bika/health/obsolete/__init__.py:41 msgid "PDF" -msgstr "" +msgstr "PDF" #: bika/health/content/analysisrequest.py:89 #: bika/health/content/batch.py:130 msgid "PID" -msgstr "" +msgstr "PID" #: bika/health/content/treatment.py:104 msgid "Palliative treatment" -msgstr "" +msgstr "Paliativní léčba" #: bika/health/ajax/client.py:49 msgid "Parameter '%s' is missing" -msgstr "" +msgstr "Parametr '%s' chybí" #: bika/health/content/immunization.py:132 msgid "Passive immunization" -msgstr "" +msgstr "Pasivní imunizace" #: bika/health/browser/analysisrequests/view.py:59 #: bika/health/browser/batchfolder.py:117 #: bika/health/browser/insurancecompany/invoicefolder.py:63 msgid "Patient" -msgstr "" +msgstr "Pacient" #: bika/health/content/batch.py:151 msgid "Patient Age at Case Onset Date" -msgstr "" +msgstr "Věk pacienta v den začátku případu" #: bika/health/browser/patient/files.py:49 msgid "Patient Files" -msgstr "" +msgstr "Soubory pacienta" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" -msgstr "" +msgstr "ID pacienta" #: bika/health/impress/reports/Default.pt:299 msgid "Patient Identifiers" -msgstr "" +msgstr "Identifikátory pacientů" #: bika/health/impress/reports/Default.pt:277 msgid "Patient Information" -msgstr "" +msgstr "Informace pacienta" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" -msgstr "" +msgstr "Další identifikátory pacienta" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" -msgstr "" +msgstr "Jednotky výšky stavu pacienta" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" -msgstr "" +msgstr "Jednotky obvodu pasu stavu pacienta" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" -msgstr "" +msgstr "Hmotnostní jednotky stavu pacienta" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." -msgstr "" +msgstr "Historie pacienta v minulosti." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" -msgstr "" +msgstr "Pacienti" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" -msgstr "" +msgstr "Telefon" #: bika/health/impress/reports/Default.pt:319 msgid "Phone (home)" -msgstr "" +msgstr "Telefon (domů)" #: bika/health/impress/reports/Default.pt:323 msgid "Phone (mobile)" -msgstr "" +msgstr "Telefon (mobilní)" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" -msgstr "" +msgstr "Fotografie" #: bika/health/skins/bika_health/validate_integrity.cpy:21 msgid "Please correct the indicated errors." -msgstr "" +msgstr "Opravte uvedené chyby." #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:156 msgid "Position" -msgstr "" +msgstr "Pozice" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:43 msgid "Pregnant" -msgstr "" +msgstr "Těhotná" #: bika/health/content/immunization.py:112 msgid "Prevention" -msgstr "" +msgstr "Prevence" #: bika/health/content/treatment.py:105 msgid "Preventive/Prophylactic treatment" -msgstr "" +msgstr "Preventivní / Profylaktická léčba" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:158 msgid "Price" -msgstr "" +msgstr "Cena" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" -msgstr "" +msgstr "Primární referrer" #: bika/health/browser/batch/publish.pt:124 msgid "Print date:" -msgstr "" +msgstr "Datum tisku:" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" -msgstr "" +msgstr "Kraj" #: bika/health/content/batch.py:170 msgid "Provisional diagnosis" -msgstr "" +msgstr "Prozatímní diagnostika" #: bika/health/impress/reports/Default.pt:256 msgid "Provisional report" -msgstr "" +msgstr "Prozatímní zpráva" #: bika/health/impress/reports/Default.pt:425 msgid "Published by" -msgstr "" +msgstr "Publikováno od" #: bika/health/impress/reports/Default.pt:570 msgid "QC Results" -msgstr "" +msgstr "QC výsledky" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" -msgstr "" +msgstr "Rozsah" #: bika/health/content/treatment.py:106 msgid "Rational treatment" -msgstr "" +msgstr "Racionální léčba" #: bika/health/config.py:49 msgid "Regular" -msgstr "" +msgstr "Pravidelný" #: bika/health/content/immunization.py:56 msgid "Relevant Facts" -msgstr "" +msgstr "Relevantní fakta" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" -msgstr "" +msgstr "Poznámky" #: bika/health/impress/reports/Default.pt:630 msgid "Responsibles" -msgstr "" +msgstr "Odpovědnosti" #: bika/health/impress/reports/Default.pt:479 msgid "Result" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" +msgstr "Výsledek" #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." -msgstr "" +msgstr "Výsledek mimo rozsah zadaný klientem." #: bika/health/impress/reports/Default.pt:449 msgid "Results" -msgstr "" +msgstr "Výsledky" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" -msgstr "" +msgstr "Přílohy výsledků jsou povoleny" #: bika/health/impress/reports/Default.pt:555 msgid "Results interpretation" -msgstr "" +msgstr "Interpretace výsledků" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" -msgstr "" +msgstr "SENAITE Health" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:74 #: bika/health/impress/reports/Default.pt:393 msgid "Sample ID" -msgstr "" +msgstr "ID vzorku" #: bika/health/impress/reports/Default.pt:351 msgid "Sample Information" -msgstr "" +msgstr "Informace vzorku" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:114 #: bika/health/impress/reports/Default.pt:405 msgid "Sample Point" -msgstr "" +msgstr "Bod vzorku" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:65 #: bika/health/impress/reports/Default.pt:401 msgid "Sample Type" -msgstr "" +msgstr "Typ vzorku" #: bika/health/skins/bika_health/patient_edit.pt:12 msgid "Save and create Clinical Case" -msgstr "" +msgstr "Uložit a vytvořit klinický případ" #: bika/health/skins/bika_health/batch_edit.pt:12 #: bika/health/skins/bika_health/patient_edit.pt:20 msgid "Save and create Sample" -msgstr "" +msgstr "Uložit a vytvořit vzorek" #: bika/health/content/immunization.py:40 msgid "Select a type of immunization.
Active immunization entails the introduction of a foreign molecule into the body, which causes the body itself to generate immunity against the target. Vaccination is an active form of immunization
Passive immunization is where pre-synthesized elements of the immune system are transferred to a person so that the body does not need to produce these elements itself. Currently, antibodies can be used for passive immunization" -msgstr "" +msgstr "Vyberte typ imunizace.
Aktivní imunizace znamená zavedení cizí molekuly do těla, což způsobí, že samotné tělo vytvoří imunitu proti cíli. Očkování je aktivní forma imunizace
Pasivní imunizace je místo, kde jsou předem syntetizované prvky imunitního systému přeneseny na osobu, takže tělo tyto prvky nemusí produkovat samo. V současné době mohou být protilátky použity k pasivní imunizaci" #: bika/health/content/treatment.py:42 msgid "Select a type of treatment." -msgstr "" +msgstr "Vyberte typ léčby." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Vyberte preferované kanály, které se mají použít pro zasílání zpráv o výsledcích pacientům. Toto nastavení lze přepsat buď na kartě „Předvolby publikace pacienta“ z pohledu klienta, nebo na kartě „Předvolby publikace“ pacienta." #: bika/health/content/client.py:61 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." -msgstr "" +msgstr "Vyberte preferované kanály, které se mají použít pro zasílání zpráv o výsledcích pacientům. Toto nastavení lze přepsat na kartě Pacientovy předvolby publikování." -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." -msgstr "" +msgstr "Zaslat faktury pojišťovně." #: bika/health/ajax/ajaxhandler.py:66 msgid "Service '%s' not found for %s" -msgstr "" +msgstr "Služba '%s' pro %s nebyla nalezena" #: bika/health/ajax/ajaxhandler.py:63 msgid "Service not defined" -msgstr "" +msgstr "Služba není definována" #: bika/health/skins/bika_health/bika_health_widgets/casesymptomswidget.pt:28 msgid "Severe" -msgstr "" +msgstr "Těžký" #: bika/health/content/symptom.py:50 msgid "Severity levels permitted" -msgstr "" +msgstr "Přípustné úrovně závažnosti" #: bika/health/content/treatment.py:107 msgid "Shock treatment" -msgstr "" +msgstr "Léčba šokem" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" -msgstr "" - -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" +msgstr "Mělo by být pole Lékař při vytváření případu povinné?" #: bika/health/content/treatment.py:108 msgid "Specific treatment" -msgstr "" +msgstr "Specifická léčba" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" -msgstr "" +msgstr "Počátek" #: bika/health/content/treatment.py:70 msgid "Subjective clinical findings" -msgstr "" +msgstr "Subjektivní klinické nálezy" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:188 #: bika/health/browser/insurancecompany/invoicefolder.py:60 msgid "Subtotal" -msgstr "" +msgstr "Mezisoučet" #: bika/health/content/aetiologicagent.py:35 #: bika/health/content/batch.py:241 msgid "Subtype" -msgstr "" +msgstr "Podtyp" #: bika/health/impress/reports/Default.pt:194 msgid "Supervisor" -msgstr "" +msgstr "Kontrolor" #: bika/health/content/treatment.py:109 msgid "Supporting treatment" -msgstr "" +msgstr "Podpůrná léčba" #: bika/health/controlpanel/bika_symptoms.py:58 msgid "Symptom" -msgstr "" +msgstr "Symptom" #: bika/health/content/immunization.py:85 #: bika/health/controlpanel/bika_symptoms.py:49 msgid "Symptoms" -msgstr "" +msgstr "Symptomy" #: bika/health/profiles/default/controlpanel.xml msgid "Symptoms and Conditions" -msgstr "" +msgstr "Symptomy a podmínky" #: bika/health/content/drug.py:49 msgid "Symptoms or the like for which the drug is suitable" -msgstr "" +msgstr "Příznaky nebo podobně, pro které je léčivo vhodné" #: bika/health/profiles/default/controlpanel.xml msgid "Syndromes" -msgstr "" +msgstr "Syndromy" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:207 msgid "Taxes" -msgstr "" +msgstr "Daně" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" -msgstr "" +msgstr "Test" #: bika/health/impress/reports/Default.pt:713 msgid "Test results are at a ${lab_confidence}% confidence level" -msgstr "" +msgstr "Výsledky testů jsou na úrovni spolehlivosti ${lab_confidence}%" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." -msgstr "" +msgstr "Identifikační číslo (Pojistné číslo) od osoby, jejíž smlouva se týká současného pacienta." -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." -msgstr "" +msgstr "Pacient a ručitel jsou stejní." -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." -msgstr "" +msgstr "Ručitelem je pacient" #: bika/health/impress/reports/Default.pt:247 msgid "This Sample has been invalidated due to erroneously published results" -msgstr "" +msgstr "Tento vzorek byl zneplatněn kvůli chybně zveřejněným výsledkům" #: bika/health/impress/reports/Default.pt:250 msgid "This Sample has been replaced by" -msgstr "" +msgstr "Tento vzorek byl nahrazen" #: bika/health/impress/reports/Default.pt:709 msgid "This document shall not be reproduced except in full, without the written approval of ${name_lab}" -msgstr "" +msgstr "Tento dokument nesmí být reprodukován pouze v plném rozsahu bez písemného souhlasu ${name_lab}" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" -msgstr "" +msgstr "Název" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:216 #: bika/health/browser/insurancecompany/invoicefolder.py:62 msgid "Total" -msgstr "" +msgstr "Celkem" #: bika/health/content/immunization.py:76 msgid "Transmission" -msgstr "" +msgstr "Přenos" #: bika/health/content/immunization.py:103 #: bika/health/controlpanel/bika_treatments.py:58 msgid "Treatment" -msgstr "" +msgstr "Léčba" #: bika/health/content/treatment.py:85 msgid "Treatment Document" -msgstr "" +msgstr "Dokument léčby" #: bika/health/content/treatment.py:61 msgid "Treatment care" -msgstr "" +msgstr "Léčebná péče" #. Default: "Procedure" #: bika/health/content/treatment.py:51 msgid "Treatment procedure" -msgstr "" +msgstr "Léčebná procedura" #. Default: "Type" #: bika/health/content/treatment.py:40 msgid "Treatment type" -msgstr "" +msgstr "Typ léčby" #: bika/health/controlpanel/bika_treatments.py:49 #: bika/health/profiles/default/controlpanel.xml msgid "Treatments" -msgstr "" +msgstr "Léčby" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" -msgstr "" +msgstr "Datum ukončení cesty" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" -msgstr "" +msgstr "Datum zahájení cesty" #: bika/health/impress/reports/Default.pt:482 msgid "Unit" -msgstr "" +msgstr "Jednotka" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" -msgstr "" +msgstr "Použijte symbol '/' pro povolení odesílání více jednotek" #: bika/health/browser/doctors/folder_view.py:58 msgid "User Name" -msgstr "" +msgstr "Uživatelské jméno" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:157 #: bika/health/browser/insurancecompany/invoicefolder.py:61 msgid "VAT" -msgstr "" +msgstr "DPH" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" -msgstr "" +msgstr "Vakcinační centrum" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" -msgstr "" +msgstr "Vakcinační centra" #: bika/health/validators.py:91 msgid "Validation failed: '${value}' is not unique" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" +msgstr "Ověření se nezdařilo: '${value}' není unikátní" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" -msgstr "" +msgstr "Ověřeno" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:52 msgid "Waist" -msgstr "" +msgstr "Pas" #: bika/health/skins/bika_health/bika_health_widgets/casepatientconditionwidget.pt:36 msgid "Weight" -msgstr "" +msgstr "Váha" #: bika/health/config.py:38 msgid "White" -msgstr "" +msgstr "Bílá" #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:58 #: bika/health/skins/bika_health/bika_health_widgets/patientmenstrualstatuswidget.pt:38 msgid "Year" -msgstr "" +msgstr "Rok" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:46 msgid "Years" -msgstr "" +msgstr "Roků" #. Default: "${Y}-${m}-${d} ${I}:${M} ${p}" #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_long" -msgstr "" +msgstr "date_format_long" #. Default: "${Y}-${m}-${d}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "date_format_short" -msgstr "" +msgstr "date_format_short" #. Date format used with the datepicker jqueryui plugin. #. Please only use 'dd', 'mm', 'yy', '-', '/', '.' in this string. #. Default: "mm/dd/yy" +#, fuzzy msgid "date_format_short_datepicker" -msgstr "" +msgstr "date_format_short_datepicker" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:26 msgid "days" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" +msgstr "dnů" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" -msgstr "" +msgstr "měsíce" #: bika/health/content/drug.py:82 msgid "preservation" -msgstr "" +msgstr "uchování" #: bika/health/browser/patient/allergies.pt:22 #: bika/health/browser/patient/chronicconditions.pt:22 #: bika/health/browser/patient/immunizationhistory.pt:22 msgid "save" -msgstr "" +msgstr "uložit" #. Default: "${I}:${M} ${p}" #. The variables used here are the same as used in the strftime formating. #. Supported are ${A}, ${a}, ${B}, ${b}, ${H}, ${I}, ${m}, ${d}, ${M}, ${p}, #. ${S}, ${Y}, ${y}, ${Z}, each used as variable in the msgstr. msgid "time_format" -msgstr "" +msgstr "time_format" #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:18 msgid "years" -msgstr "" +msgstr "roků" diff --git a/bika/health/locales/da_DK/LC_MESSAGES/senaite.core.po b/bika/health/locales/da_DK/LC_MESSAGES/senaite.core.po index 8f4ec731..8d91e609 100644 --- a/bika/health/locales/da_DK/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/da_DK/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (Denmark) (https://www.transifex.com/senaite/teams/87046/da_DK/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/da_DK/LC_MESSAGES/senaite.health.po b/bika/health/locales/da_DK/LC_MESSAGES/senaite.health.po index cc5d9d18..286c398f 100644 --- a/bika/health/locales/da_DK/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/da_DK/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (Denmark) (https://www.transifex.com/senaite/teams/87046/da_DK/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/de/LC_MESSAGES/senaite.core.po b/bika/health/locales/de/LC_MESSAGES/senaite.core.po index 5ef95832..14060b38 100644 --- a/bika/health/locales/de/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/de/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German (https://www.transifex.com/senaite/teams/87046/de/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/de/LC_MESSAGES/senaite.health.po b/bika/health/locales/de/LC_MESSAGES/senaite.health.po index b837a58a..f8d150d0 100644 --- a/bika/health/locales/de/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/de/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German (https://www.transifex.com/senaite/teams/87046/de/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/el/LC_MESSAGES/senaite.core.po b/bika/health/locales/el/LC_MESSAGES/senaite.core.po index f706f9ab..893ff80c 100644 --- a/bika/health/locales/el/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/el/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek (https://www.transifex.com/senaite/teams/87046/el/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/el/LC_MESSAGES/senaite.health.po b/bika/health/locales/el/LC_MESSAGES/senaite.health.po index a240ab5e..23c2c0ef 100644 --- a/bika/health/locales/el/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/el/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Greek (https://www.transifex.com/senaite/teams/87046/el/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Λίστα εμβολιασμών που έχουν χορηγηθεί στον ασθενή." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Λίστα θεραπειών ασθενή και φαρμάκων που του έχουν χορηγηθεί." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Λίστα περιοχών που έχει επισκευθεί ο ασθενής." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Εν ενεργεία" @@ -67,7 +67,7 @@ msgstr "Ενεργή θεραπεία" msgid "Add" msgstr "Προσθήκη" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Πρόσθετα Συμπτώματα που δεν καλύπτονται από κωδικούς ICD, μπορούν να εισαχθούν εδώ." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Πρόσθετα αναγνωριστικά" @@ -96,27 +96,23 @@ msgstr "Αιτιολογικοί Παράγοντες" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Ηλικία" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Ημερομηνία γέννησης" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Ημερομηνία Γέννησης κατ' εκτίμηση" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Τόπος γέννησης" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Ημερομηνία Γέννησης" @@ -216,7 +212,7 @@ msgstr "Τηλέφωνο Εργασίας" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Χώρα" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Ημερομηνία" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Περιγραφή" @@ -431,7 +427,7 @@ msgstr "Ασθένεια" msgid "Diseases" msgstr "Ασθένειες" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Ιατρός" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Δε Γνωρίζω" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Φάρμακο" @@ -490,7 +486,7 @@ msgstr "Φάρμακο" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -527,12 +523,12 @@ msgstr "Ανεπιθύμητες ενέργειες φαρμάκου" msgid "Drugs" msgstr "Φάρμακα" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Διεύθυνση Email" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -563,7 +551,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Εθνικότητα" @@ -571,7 +559,7 @@ msgstr "Εθνικότητα" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -583,21 +571,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Φαξ" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Χαρακτηριστικό" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Θήλυ" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Πλήρες Όνομα" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Φύλο" @@ -654,35 +642,35 @@ msgstr "" msgid "Geographical distribution" msgstr "Γεωγραφική κατανομή" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "Κωδικός ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Αναγνωριστικό" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Είδος Αναγνωριστικού" @@ -724,11 +712,11 @@ msgstr "Είδος Αναγνωριστικού" msgid "Identifier Types" msgstr "Είδη Αναγνωριστικού" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Ανοσοποίηση" @@ -771,13 +755,13 @@ msgstr "" msgid "Immunizations" msgstr "Εμβολιασμοί" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Γνωστές αλλεργίες Ασθενή, για τήρηση πληροφοριών που μπορούν να βοηθήσουν στην ερμηνεία φαρμακευτικής αντίδρασης" @@ -847,11 +827,11 @@ msgstr "Γνωστές αλλεργίες Ασθενή, για τήρηση πλ msgid "Known undesirable effects of the drug" msgstr "Γνωστές ανεπιθύμητες ενέργειες του φαρμάκου" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Τοποθεσία" @@ -859,11 +839,6 @@ msgstr "Τοποθεσία" msgid "Male" msgstr "Άρρεν" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Κινητό Τηλέφωνο" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Όνομα Μητέρας" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Όνομα" @@ -917,7 +887,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Πρόσθετα αναγνωριστικά ασθενή" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Προηγούμενο ιατρικό ιστορικό ασθενή." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Ασθενείς" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Τηλέφωνο" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Φωτογραφία" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1092,7 +1062,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "Επιλέξτε ένα είδος θεραπείας" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Έναρξη" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Θεραπείες" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Ημερομηνία Τέλους Ταξιδιού" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Ημερομηνία Έναρξης Ταξιδιού" @@ -1393,11 +1350,7 @@ msgstr "Ημερομηνία Έναρξης Ταξιδιού" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Κέντρο Εμβολιασμού" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Κέντρα Εμβολιασμού" @@ -1423,14 +1376,6 @@ msgstr "Κέντρα Εμβολιασμού" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1479,14 +1424,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/en/LC_MESSAGES/senaite.core.po b/bika/health/locales/en/LC_MESSAGES/senaite.core.po index a3ce4673..6c353494 100644 --- a/bika/health/locales/en/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/en/LC_MESSAGES/senaite.core.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,20 +18,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -74,31 +74,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -130,19 +126,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -164,7 +160,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -213,17 +209,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -237,16 +233,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -255,7 +251,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -267,7 +263,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -275,15 +271,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -291,13 +287,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -310,7 +306,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -326,7 +322,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -360,7 +356,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -369,7 +365,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -401,12 +397,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -420,15 +416,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -436,7 +424,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -444,7 +432,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -456,21 +444,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -482,11 +470,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -505,8 +493,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -519,31 +507,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -551,7 +539,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -563,11 +551,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -575,11 +563,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -587,7 +575,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -595,19 +583,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -621,11 +605,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -633,7 +617,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -645,11 +629,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -669,11 +653,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -681,11 +661,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -693,16 +673,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -711,11 +681,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -789,40 +759,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -839,11 +809,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -865,21 +835,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -891,7 +853,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -899,7 +861,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -919,19 +881,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -965,20 +923,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1019,16 +977,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1040,11 +998,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1052,26 +1010,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/en/LC_MESSAGES/senaite.health.po b/bika/health/locales/en/LC_MESSAGES/senaite.health.po index 64f034a9..d43b3957 100644 --- a/bika/health/locales/en/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/en/LC_MESSAGES/senaite.health.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,15 +26,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -44,7 +44,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -92,27 +92,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -128,7 +124,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -176,19 +172,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -212,7 +208,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -264,11 +260,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -293,17 +289,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -320,7 +316,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -332,7 +328,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -340,11 +336,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -352,7 +348,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -403,13 +399,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -427,7 +423,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -443,7 +439,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -477,7 +473,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -486,7 +482,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -523,12 +519,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -542,15 +538,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -559,7 +547,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -567,7 +555,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -579,21 +567,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -605,11 +593,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -636,8 +624,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -650,35 +638,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -690,7 +678,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -707,11 +695,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -720,11 +708,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -732,7 +720,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -740,19 +728,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -767,13 +751,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -781,7 +765,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -794,12 +778,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -831,11 +815,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -843,11 +823,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -855,11 +835,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -872,11 +847,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -897,11 +867,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -913,7 +883,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1001,7 +971,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1013,33 +983,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1051,7 +1021,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1080,7 +1050,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1088,7 +1058,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1108,7 +1078,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1127,7 +1096,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1139,14 +1108,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1155,9 +1116,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1165,7 +1126,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1205,7 +1166,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1213,7 +1174,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1237,19 +1198,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1300,7 +1257,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1308,15 +1265,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1333,7 +1290,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1376,12 +1333,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1389,11 +1346,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1406,11 +1359,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1419,14 +1372,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1475,14 +1420,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/en_ES/LC_MESSAGES/senaite.core.po b/bika/health/locales/en_ES/LC_MESSAGES/senaite.core.po index 62af5872..0daf9129 100644 --- a/bika/health/locales/en_ES/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/en_ES/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Spain) (https://www.transifex.com/senaite/teams/87046/en_ES/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/en_ES/LC_MESSAGES/senaite.health.po b/bika/health/locales/en_ES/LC_MESSAGES/senaite.health.po index 7564df9a..7b06f404 100644 --- a/bika/health/locales/en_ES/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/en_ES/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Spain) (https://www.transifex.com/senaite/teams/87046/en_ES/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/en_US/LC_MESSAGES/senaite.core.po b/bika/health/locales/en_US/LC_MESSAGES/senaite.core.po index 20f23955..04644b90 100644 --- a/bika/health/locales/en_US/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/en_US/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (United States) (https://www.transifex.com/senaite/teams/87046/en_US/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/en_US/LC_MESSAGES/senaite.health.po b/bika/health/locales/en_US/LC_MESSAGES/senaite.health.po index 7be77e13..45ff940d 100644 --- a/bika/health/locales/en_US/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/en_US/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (United States) (https://www.transifex.com/senaite/teams/87046/en_US/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/eo/LC_MESSAGES/senaite.core.po b/bika/health/locales/eo/LC_MESSAGES/senaite.core.po index d81349cb..e8ffd927 100644 --- a/bika/health/locales/eo/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/eo/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto (https://www.transifex.com/senaite/teams/87046/eo/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/eo/LC_MESSAGES/senaite.health.po b/bika/health/locales/eo/LC_MESSAGES/senaite.health.po index 79fa1394..6e99d1df 100644 --- a/bika/health/locales/eo/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/eo/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto (https://www.transifex.com/senaite/teams/87046/eo/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/es/LC_MESSAGES/senaite.core.po b/bika/health/locales/es/LC_MESSAGES/senaite.core.po index 5364367a..fbf5eb5e 100644 --- a/bika/health/locales/es/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es/LC_MESSAGES/senaite.core.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Pau Soliva , 2019\n" "Language-Team: Spanish (https://www.transifex.com/senaite/teams/87046/es/)\n" @@ -22,20 +22,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Lista de los subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista de inmunizaciones administradas al paciente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista de tratamientos y drogas administradas al paciente" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista de lugares visitados por el paciente" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activo" @@ -54,7 +54,7 @@ msgstr "Tratmiento activo" msgid "Add" msgstr "Añadir" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -62,7 +62,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Síntomas adicionales no cubiertos por códigos ICD pueden ser ingresados aquí" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadores adicionales" @@ -78,31 +78,27 @@ msgstr "Agentes Etiológicos" msgid "Aetiologic agent" msgstr "Agente etiológico" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edad" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "Alertar a los responsables del laboratorio por correo electrónico cuando se envíe un resultado de análisis que exceda un nivel de pánico" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todos" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Permitir la distribución de resultados a los pacientes." -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Permitir la distribución de resultados a este paciente." -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anónimo" @@ -134,19 +130,19 @@ msgstr "ID del caso" msgid "Batches" msgstr "Casos" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Fecha de nacimiento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Fecha de nacimiento es estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar de nacimiento" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "FechaNacimiento" @@ -168,7 +164,7 @@ msgstr "Teléfono del trabajo" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "Caso" @@ -217,17 +213,17 @@ msgstr "Cambios guardados." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Comprobar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, grave) del síntoma" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Ciudadanía" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado Civil" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "Institución de referencia" @@ -241,16 +237,16 @@ msgstr "ID de Institución de Referencia" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "Identificador del Paciente para el Caso" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "Identificador del Paciente para el Caso" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identificador del Paciente para el Cliente debe ser único" @@ -259,7 +255,7 @@ msgid "Clients" msgstr "Instituciones de referencia" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Código" @@ -271,7 +267,7 @@ msgstr "Colectivos en riesgo" msgid "Company Name" msgstr "Nombre de la Empresa" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Permitir SMS" @@ -279,15 +275,15 @@ msgstr "Permitir SMS" msgid "Conservative treatment" msgstr "Tratamiento conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "País" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País y estado" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Fecha" @@ -295,13 +291,13 @@ msgstr "Fecha" msgid "Default" msgstr "Por defecto" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "Preferencias de publicación por defecto para los pacientes" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripción" @@ -314,7 +310,7 @@ msgstr "Enfermedad" msgid "Diseases" msgstr "Enfermedades" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -330,7 +326,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "ID de Doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "El campo Doctor es obligatorio en los Casos" @@ -364,7 +360,7 @@ msgstr "No lo sé" msgid "Dormant" msgstr "Inactivos" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Medicamento" @@ -373,7 +369,7 @@ msgstr "Medicamento" msgid "Drug Prohibition" msgstr "Medicamentos Prohibidos" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicación de la prohibición para el medicamento" @@ -405,12 +401,12 @@ msgstr "Efectos secundarios del medicamento" msgid "Drugs" msgstr "Medicamentos" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Correo electrónico" @@ -424,15 +420,7 @@ msgstr "Dirección de correo electrónico" msgid "Empirical treatment" msgstr "Tratamiento empírico" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "Habilitar el formulario de solicitud de análisis de Bika." - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "Habilitar las alertas de niveles de pánico" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -440,7 +428,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "Etnias" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnia" @@ -448,7 +436,7 @@ msgstr "Etnia" msgid "Ethnicity Name" msgstr "Nombre de la Etnia" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etnia, ej Asiático, Africano, etc." @@ -460,21 +448,21 @@ msgstr "Tratamiento expectante/sintomático" msgid "Failed ajax call: %s" msgstr "Llamada ajax fallida: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "Nombre del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Pies/Pulgadas" @@ -486,11 +474,11 @@ msgstr "Mujer" msgid "File" msgstr "Fichero" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Archivos adjuntos en los resultados, por ejemplo, las fotos del microscopio se incluirán en los correos electrónicos para el paciente si esta opción está habilitada." -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -509,8 +497,8 @@ msgstr "Nombre completo" msgid "Fullname" msgstr "Nombre completo" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Género" @@ -523,31 +511,31 @@ msgstr "Las áreas geográficas pueden caracterizarse por tener niveles altos, i msgid "Geographical distribution" msgstr "Distribución geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -555,7 +543,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -567,11 +555,11 @@ msgstr "Horas de ayuno" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Identificador" @@ -579,11 +567,11 @@ msgstr "Tipo de Identificador" msgid "Identifier Types" msgstr "Tipos de identificadores" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -591,7 +579,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -599,19 +587,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -625,11 +609,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -637,7 +621,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -649,11 +633,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -673,11 +657,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -685,11 +665,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -697,16 +677,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -715,11 +685,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -793,40 +763,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -843,11 +813,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -869,21 +839,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -895,7 +857,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -903,7 +865,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -923,19 +885,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -969,20 +927,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1023,16 +981,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1044,11 +1002,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1056,26 +1014,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/es/LC_MESSAGES/senaite.health.po b/bika/health/locales/es/LC_MESSAGES/senaite.health.po index 7039e706..7c8db38c 100644 --- a/bika/health/locales/es/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es/LC_MESSAGES/senaite.health.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Pau Soliva , 2019\n" "Language-Team: Spanish (https://www.transifex.com/senaite/teams/87046/es/)\n" @@ -31,15 +31,15 @@ msgstr "-" msgid "A list of aetiologic agent subtypes." msgstr "Lista de los subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista de inmunizaciones administradas al paciente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista de tratamientos y drogas administradas al paciente" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista de lugares visitados por el paciente" @@ -49,7 +49,7 @@ msgid "Activate" msgstr "Activar" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activo" @@ -68,7 +68,7 @@ msgstr "Tratmiento activo" msgid "Add" msgstr "Añadir" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Síntomas adicionales no cubiertos por códigos ICD pueden ser ingresados aquí" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadores adicionales" @@ -97,27 +97,23 @@ msgstr "Agentes Etiológicos" msgid "Aetiologic agent" msgstr "Agente etiológico" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edad" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "Alertar a los responsables del laboratorio por correo electrónico cuando se envíe un resultado de análisis que exceda un nivel de pánico" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todos" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Permitir la distribución de resultados a los pacientes." -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Permitir la distribución de resultados a este paciente." @@ -133,7 +129,7 @@ msgstr "Informe de Análisis" msgid "Analysis results relate only to the samples tested." msgstr "Los resultados de las analíticas se refieren únicamente a las muestras analizadas." -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anónimo" @@ -181,19 +177,19 @@ msgstr "Etiquetas de Casos" msgid "Batches" msgstr "Casos" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Fecha de nacimiento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Fecha de nacimiento es estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar de nacimiento" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "FechaNacimiento" @@ -217,7 +213,7 @@ msgstr "Teléfono del negocio" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "Caso" @@ -269,11 +265,11 @@ msgstr "Cambios guardados." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Comprobar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, grave) del síntoma" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Ciudadanía" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado Civil" @@ -298,17 +294,17 @@ msgstr "Número de Pedido del Cliente" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "Identificador del Paciente para el Caso" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "Identificador del Paciente para el Caso" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identificador del Paciente para el Cliente debe ser único" @@ -325,7 +321,7 @@ msgid "Clients" msgstr "Instituciones de referencia" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Código" @@ -337,7 +333,7 @@ msgstr "Colectivos en riesgo" msgid "Company Name" msgstr "Nombre de la Empresa" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Permitir SMS" @@ -345,11 +341,11 @@ msgstr "Permitir SMS" msgid "Conservative treatment" msgstr "Tratamiento conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Pais" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País y estado" @@ -357,7 +353,7 @@ msgstr "País y estado" msgid "Custom Report Options" msgstr "Opciones de informes personalizados" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Fecha" @@ -408,13 +404,13 @@ msgstr "Desactivado" msgid "Default" msgstr "Por defecto" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "Preferencias de publicación por defecto para los pacientes" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripción" @@ -432,7 +428,7 @@ msgstr "Enfermedad" msgid "Diseases" msgstr "Enfermedades" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -448,7 +444,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "ID de Doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "El campo Doctor es obligatorio en los Casos" @@ -482,7 +478,7 @@ msgstr "No lo sé" msgid "Dormant" msgstr "Inactivos" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Droga" @@ -491,7 +487,7 @@ msgstr "Droga" msgid "Drug Prohibition" msgstr "Prohibición de Droga" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicación de Prohibición de Droga" @@ -528,12 +524,12 @@ msgstr "Efectos laterales de droga" msgid "Drugs" msgstr "Drogas" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -547,15 +543,7 @@ msgstr "Dirección de correo electrónico" msgid "Empirical treatment" msgstr "Tratamiento emírico" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "Habilitar el formulario de solicitud de análisis de Bika." - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "Habilitar las alertas de niveles de pánico" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -564,7 +552,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "Etnias" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnicidad" @@ -572,7 +560,7 @@ msgstr "Etnicidad" msgid "Ethnicity Name" msgstr "Nombre de la Etnia" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etnicidad, ej Asiático, Africano, etc." @@ -584,21 +572,21 @@ msgstr "Tratamiento expectante/sintomático" msgid "Failed ajax call: %s" msgstr "Llamada ajax fallida: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "Nombre del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Pies/Pulgadas" @@ -610,11 +598,11 @@ msgstr "Mujer" msgid "File" msgstr "Fichero" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Archivos adjuntos en los resultados, por ejemplo, las fotos del microscopio se incluirán en los correos electrónicos para el paciente si esta opción está habilitada." -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -641,8 +629,8 @@ msgstr "Nombre completo" msgid "Fullname" msgstr "Nombre completo" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Género" @@ -655,35 +643,35 @@ msgstr "Las áreas geográficas pueden caracterizarse por tener niveles altos, i msgid "Geographical distribution" msgstr "Distribución geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "Identificación del aval" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "Nombre del aval" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "Teléfono (del trabajo) del aval" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "Teléfono (de casa) del aval" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "Teléfono (móvil) del aval" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "Apellido del aval" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "Dirección postal del aval" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "Extensión de SENAITE para ámbitos de salud" @@ -695,7 +683,7 @@ msgstr "Altura" msgid "Hispanic or Latino" msgstr "Hispánico o Latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "Histórico de resultados" @@ -712,11 +700,11 @@ msgstr "Histerectomía" msgid "ICD Code" msgstr "Código ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Identificador" @@ -725,11 +713,11 @@ msgstr "Tipo de Identificador" msgid "Identifier Types" msgstr "Tipos de identificadores" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "Si está marcado, los informes de resultados también se enviarán al paciente automáticamente." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -737,7 +725,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -745,19 +733,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "Si se selecciona, el sistema forzará que los Identificadores de los Pacientes para el Cliente sean únicos" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Inmunización" @@ -772,13 +756,13 @@ msgstr "Formulario de inmunización" msgid "Immunizations" msgstr "Inmunizaciones" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "Inactivo" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "Pulgadas" @@ -786,7 +770,7 @@ msgstr "Pulgadas" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "Heredar de la configuración por defecto" @@ -799,12 +783,12 @@ msgstr "" msgid "Insurance Companies" msgstr "Empresas Aseguradoras" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "Empresa Aseguradora" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "Número de seguro" @@ -836,11 +820,7 @@ msgstr "Facturas" msgid "Irregular" msgstr "Irregular" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Alergias del paciente conocidas para proveer información que ayude la interpretación a la reacción a un fármaco" @@ -848,11 +828,11 @@ msgstr "Alergias del paciente conocidas para proveer información que ayude la i msgid "Known undesirable effects of the drug" msgstr "Efectos no deseados conocidos de la droga" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "Lbs" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Lugar" @@ -860,11 +840,6 @@ msgstr "Lugar" msgid "Male" msgstr "Hombre" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -877,11 +852,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Teléfono móvil" @@ -902,11 +872,11 @@ msgstr "Mes" msgid "Months" msgstr "Meses" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Apellido Materno" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nombre" @@ -918,7 +888,7 @@ msgstr "Nativo americano" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Nativo Hawaiano u Otro Isleño del Pacífico" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1006,7 +976,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID del Paciente" @@ -1018,33 +988,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificadores adicionales del paciente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historia médica pasada del paciente." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacientes" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Teléfono" @@ -1056,7 +1026,7 @@ msgstr "Teléfono (casa)" msgid "Phone (mobile)" msgstr "Teléfono (móvil)" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1085,7 +1055,7 @@ msgid "Price" msgstr "Precio" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referencia Primaria" @@ -1093,7 +1063,7 @@ msgstr "Referencia Primaria" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1113,7 +1083,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "Rango" @@ -1132,7 +1101,7 @@ msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Observaciones" @@ -1144,14 +1113,6 @@ msgstr "Responsables" msgid "Result" msgstr "Resultado" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1160,9 +1121,9 @@ msgstr "" msgid "Results" msgstr "Resultados" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1170,7 +1131,7 @@ msgstr "" msgid "Results interpretation" msgstr "Interpretación de Resultados" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "SENAITE Health" @@ -1210,7 +1171,7 @@ msgstr "Seleccione un tipo de inmunización.
La inmunización activa impli msgid "Select a type of treatment." msgstr "Seleccione un tipo de tratamiento" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1218,7 +1179,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1242,19 +1203,15 @@ msgstr "" msgid "Shock treatment" msgstr "Tratamiento de shock" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratamiento específico" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Inicio" @@ -1305,7 +1262,7 @@ msgstr "Síndromes" msgid "Taxes" msgstr "Impuestos" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "Prueba" @@ -1313,15 +1270,15 @@ msgstr "Prueba" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1338,7 +1295,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Título" @@ -1381,12 +1338,12 @@ msgid "Treatments" msgstr "Tratamientos" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Fecha de Fin de Viaje" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Fecha de Inicio de Viaje" @@ -1394,11 +1351,7 @@ msgstr "Fecha de Inicio de Viaje" msgid "Unit" msgstr "Unidad" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "Unidades" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1411,11 +1364,11 @@ msgstr "Nombre de Usuario" msgid "VAT" msgstr "VAT" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro de Vacunación" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centros de Vacunación" @@ -1424,14 +1377,6 @@ msgstr "Centros de Vacunación" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "Verificado por" @@ -1481,14 +1426,6 @@ msgstr "dd-mm-yy" msgid "days" msgstr "días" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "meses" diff --git a/bika/health/locales/es_419/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_419/LC_MESSAGES/senaite.core.po index 94fc1a68..68bd214b 100644 --- a/bika/health/locales/es_419/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_419/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Latin America) (https://www.transifex.com/senaite/teams/87046/es_419/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/es_419/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_419/LC_MESSAGES/senaite.health.po index 2ea760f3..c21344e4 100644 --- a/bika/health/locales/es_419/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_419/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Latin America) (https://www.transifex.com/senaite/teams/87046/es_419/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po index d3eb1478..4fecbe6b 100644 --- a/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_AR/LC_MESSAGES/senaite.core.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: ale meng , 2019\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/senaite/teams/87046/es_AR/)\n" @@ -22,20 +22,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Lista de los subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista de inmunizaciones administradas al paciente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista de tratamientos y drogas administradas al paciente" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista de lugares visitados por el paciente." #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activo" @@ -54,7 +54,7 @@ msgstr "Tratamiento activo" msgid "Add" msgstr "Agregar" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "IDs adicionales" @@ -62,7 +62,7 @@ msgstr "IDs adicionales" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Síntomas adicionales no cubiertos por los códigos del CIE pueden ser ingresados aquí." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadores adicionales" @@ -78,31 +78,27 @@ msgstr "Agentes Etiológicos" msgid "Aetiologic agent" msgstr "Agente Etiológico" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edad" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "Envío de un email de alerta a los labmanagers cuando un resultado de análisis excede los valores críticos" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todo" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Permitir la distribución de resultados a los pacientes" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Permitir la distribución de resultados a éste paciente" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anónimo" @@ -134,19 +130,19 @@ msgstr "Identificador de Lote" msgid "Batches" msgstr "Lotes" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Fecha de nacimiento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Fecha de nacimiento estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar de nacimiento" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Fecha de nacimiento" @@ -168,7 +164,7 @@ msgstr "Teléfono Empresarial" msgid "CPID" msgstr "IDCP" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "Caso" @@ -217,17 +213,17 @@ msgstr "Cambios guardados." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Seleccionar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, severo) del síntoma" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Ciudadanía" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado civil" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "Cliente" @@ -241,16 +237,16 @@ msgstr "Identificador de Cliente" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "Identificador del paciente por el cliente" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "Identificador de Paciente del Cliente" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identificador de Paciente del Cliente debe ser único" @@ -259,7 +255,7 @@ msgid "Clients" msgstr "Clientes" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Código" @@ -271,7 +267,7 @@ msgstr "Grupos de Riesgo" msgid "Company Name" msgstr "Nombre de la Compañía" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Enviar por SMS" @@ -279,15 +275,15 @@ msgstr "Enviar por SMS" msgid "Conservative treatment" msgstr "Tratamiento Conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "País" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País y estado" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Fecha" @@ -295,13 +291,13 @@ msgstr "Fecha" msgid "Default" msgstr "Por Defecto" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "Preferencias de publicación para Pacientes predeterminada" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripción" @@ -314,7 +310,7 @@ msgstr "Enfermedad" msgid "Diseases" msgstr "Efermedades" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "Distrito" @@ -330,7 +326,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "Identificador de Doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "El campo Doctor es obligatorio en los casos" @@ -364,7 +360,7 @@ msgstr "No Sabe" msgid "Dormant" msgstr "Latente" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Droga" @@ -373,7 +369,7 @@ msgstr "Droga" msgid "Drug Prohibition" msgstr "Prohibición de Droga" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicación de Prohibición de Droga" @@ -405,12 +401,12 @@ msgstr "Efectos colaterales de la droga" msgid "Drugs" msgstr "Drogas" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Correo electrónico" @@ -424,15 +420,7 @@ msgstr "Dirección de correo electrónico" msgid "Empirical treatment" msgstr "Tratamiento empírico" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "Activar formulario de solicitud de análisis tipo BIKA" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "Activar alerta de valores críticos" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -440,7 +428,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "Etnias" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnia" @@ -448,7 +436,7 @@ msgstr "Etnia" msgid "Ethnicity Name" msgstr "Nombre de Etnia" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Ejemplo de etnia, Asiático, Africano, etc" @@ -460,21 +448,21 @@ msgstr "Tratamiento Sintomático" msgid "Failed ajax call: %s" msgstr "Llamada fallida ajax: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "Nombres del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Pies/pulgadas" @@ -486,11 +474,11 @@ msgstr "Femenino" msgid "File" msgstr "Archivo" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, pueden ser incluido en los correos electrónicos de los pacientes si ésta opción está habilitada" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -509,8 +497,8 @@ msgstr "Nombre completo" msgid "Fullname" msgstr "Nombre completo" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Género" @@ -523,31 +511,31 @@ msgstr "Las áreas geográficas pueden ser caracterizadas con alto, intermedio o msgid "Geographical distribution" msgstr "Distribución geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "Identificador de garante" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "Primer nombre del garante" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "Número de Teléfono del Garante (Empresa)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "Número de Teléfono del Garante (Fijo)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "Número de Teléfono del Garante (Celular)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "Apellido del Garante" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "Dirección postal del garante" @@ -555,7 +543,7 @@ msgstr "Dirección postal del garante" msgid "Hispanic or Latino" msgstr "Hispánico o latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "Historial de Resultados" @@ -567,11 +555,11 @@ msgstr "Horas de ayuno" msgid "ICD Code" msgstr "Código CIE" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Identificador" @@ -579,11 +567,11 @@ msgstr "Tipo de Identificador" msgid "Identifier Types" msgstr "Tipos de Identificador" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente ." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -591,7 +579,7 @@ msgstr "Si se selecciona, los informes de resultados también se enviarán autom msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente'." -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que también se completarán más cambios en el Cliente para esta configuración." @@ -599,19 +587,15 @@ msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "Si se selecciona, la configuración para la distribución de informes de resultados a los pacientes se heredará de la Configuración de Bika, por lo que también se completarán los cambios adicionales en la Configuración de Bika para esta configuración." -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "Si está habilitado, muestra automáticamente una ventana emergente de formulario de correo electrónico para alertar al cliente sobre resultados con valores críticos cuando se carga la vista Solicitud de Análisis" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "Si se selecciona, las facturas se enviarán a la compañía de seguros. En este caso, el número de seguro será obligatorio." -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "Si está seleccionado, los Identificadores de pacientes de los clientes serán forzados a ser únicos" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Inmunización" @@ -625,11 +609,11 @@ msgstr "Formulario de Inmunización" msgid "Immunizations" msgstr "Inmunizaciones" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "Inactivo" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "Pulgadas" @@ -637,7 +621,7 @@ msgstr "Pulgadas" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "Formato incorrecto en '${title}', debería ser YYYY-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "Heredar la configuración predeterminada" @@ -649,11 +633,11 @@ msgstr "Heredar la configuración predeterminada para la distribución de result msgid "Insurance Companies" msgstr "Compañías Aseguradoras" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "Compañía Aseguradora" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "Número de Asegurado" @@ -673,11 +657,7 @@ msgstr "Facturas" msgid "Irregular" msgstr "Irregular" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "Habilita el formulario de solicitud de análisis secundario. Esta solicitud tiene algunas características que le permiten registrar más de una solicitud de análisis al mismo tiempo. Es útil si se supone que debe registrar una gran cantidad de solicitudes de análisis al mismo tiempo." - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Alergias conocidas del paciente para mantener información que puede ayudar a la interpretación de la reacción al medicamento" @@ -685,11 +665,11 @@ msgstr "Alergias conocidas del paciente para mantener información que puede ayu msgid "Known undesirable effects of the drug" msgstr "Efectos indeseables y conocidos del medicamento" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "Libras" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Ubicación" @@ -697,16 +677,6 @@ msgstr "Ubicación" msgid "Male" msgstr "Masculino" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "Valor Crítico Máximo" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "Valor Crítico Mínimo" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Teléfono Celular" @@ -715,11 +685,11 @@ msgstr "Teléfono Celular" msgid "MobilePhone" msgstr "TeléfonoCelular" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Nombre de la madre" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nombre" @@ -793,40 +763,40 @@ msgstr "Archivos del paciente" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "Identificador del paciente" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificadores adicionales del paciente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "Unidades de altura del paciente" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "Unidades de perímetro de cintura del paciente" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "Unidades de peso del paciente" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historial médico del paciente" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacientes" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Número de Teléfono" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -843,11 +813,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "Tratamiento Profiláctico" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referencia Primaria" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "Provincia" @@ -869,21 +839,13 @@ msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Observaciones" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "Resultado excede el valor crítico" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "Resultado dentro del rango crítico" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "Permitido el adjuntado de resultados" @@ -895,7 +857,7 @@ msgstr "Seleccione un tipo de inmunización.
La inmunización activa implic msgid "Select a type of treatment." msgstr "Seleccionar el tipo de tratamiento" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -903,7 +865,7 @@ msgstr "Seleccione los canales preferidos que se utilizarán para enviar los inf msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "Enviar facturas a la compañía de seguros" @@ -923,19 +885,15 @@ msgstr "Niveles de severidad permitido" msgid "Shock treatment" msgstr "Tratamiento del Shock" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "¿Debería ser el campo Doctor obligatorio cuando se crea un caso?" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "Mostrar una ventana emergente en el correo electrónico del cliente cuando el un resultado excede un valor crítico" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratamiento específico" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Comienzo" @@ -969,20 +927,20 @@ msgstr "Síntomas" msgid "Symptoms or the like for which the drug is suitable" msgstr "Síntomas para los cuales el medicamento es adecuado" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "El número de identificación (número de seguro) de la persona cuyo contrato cubre al paciente." -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "El paciente y el garante son la misma persona." -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "El paciente es el garante." #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Título" @@ -1023,16 +981,16 @@ msgid "Treatments" msgstr "Tratamientos" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Fecha de finalización del viaje" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Fecha de inicio del viaje" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "Use el símbolo '/' para permitir el envío de unidades múltiples" @@ -1044,11 +1002,11 @@ msgstr "Nombre de Usuario" msgid "VAT" msgstr "IVA" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro de Vacunación" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "Centros de Vacunación" @@ -1056,26 +1014,10 @@ msgstr "Centros de Vacunación" msgid "Validation failed: '${value}' is not unique" msgstr "Validación fallida: '${value}' no es único" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "Validación fallida: el valor crítico máximo debe ser mayor que el valor crítico mínimo" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "Validación fallida: el valor crítico mínimo debe ser numérico" - #: bika/health/config.py:38 msgid "White" msgstr "Blanco" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "valor crítico máximo" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "valor crítico mínimo" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "Conservación" diff --git a/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po index 4133ba77..003480a8 100644 --- a/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_AR/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: ale meng , 2019\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/senaite/teams/87046/es_AR/)\n" @@ -30,15 +30,15 @@ msgstr "-" msgid "A list of aetiologic agent subtypes." msgstr "Lista de los subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista de inmunizaciones administradas al paciente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista de tratamientos y drogas administradas al paciente" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista de lugares visitados por el paciente." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "Activado" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activo" @@ -67,7 +67,7 @@ msgstr "Tratamiento activo" msgid "Add" msgstr "Agregar" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "IDs adicionales" @@ -75,7 +75,7 @@ msgstr "IDs adicionales" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Síntomas adicionales no cubiertos por los códigos del CIE pueden ser ingresados aquí." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadores adicionales" @@ -96,27 +96,23 @@ msgstr "Agentes Etiológicos" msgid "Aetiologic agent" msgstr "Agente Etiológico" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edad" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "Envío de un email de alerta a los labmanagers cuando un resultado de análisis excede los valores críticos" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todo" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Permitir la distribución de resultados a los pacientes" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Permitir la distribución de resultados a éste paciente" @@ -132,7 +128,7 @@ msgstr "Reporte de Análisis" msgid "Analysis results relate only to the samples tested." msgstr "Resultados de análisis relacionados sólo a la muestra testeada" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anónimo" @@ -180,19 +176,19 @@ msgstr "Etiquetas de Lote" msgid "Batches" msgstr "Lotes" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Fecha de nacimiento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Fecha de Nacimiento es estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar de nacimiento" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Fecha de nacimiento" @@ -216,7 +212,7 @@ msgstr "Teléfono Empresarial" msgid "CPID" msgstr "IDCP" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "Caso" @@ -268,11 +264,11 @@ msgstr "Cambios guardados." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Seleccionar si el paciente puede experimentar diferentes niveles de estrés (ninguno, leve, moderado, severo) del síntoma" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Ciudadanía" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado civil" @@ -297,17 +293,17 @@ msgstr "Número de Orden de Cliente" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "PID de Cliente" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "Identificador de Paciente del Cliente" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identificador de Paciente del Cliente debe ser único" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Clientes" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Código" @@ -336,7 +332,7 @@ msgstr "Grupos de Riesgo" msgid "Company Name" msgstr "Nombre de la Compañía" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Enviar por SMS" @@ -344,11 +340,11 @@ msgstr "Enviar por SMS" msgid "Conservative treatment" msgstr "Tratamiento Conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "País" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País y estado" @@ -356,7 +352,7 @@ msgstr "País y estado" msgid "Custom Report Options" msgstr "Opciones de Reporte Personalizados" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Fecha" @@ -407,13 +403,13 @@ msgstr "Desactivar" msgid "Default" msgstr "Por Defecto" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "Preferencias de publicación para Pacientes por defecto" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripción" @@ -431,7 +427,7 @@ msgstr "Enfermedad" msgid "Diseases" msgstr "Efermedades" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "Distrito" @@ -447,7 +443,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "Identificador de Doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "El campo Doctor es obligatorio en los casos" @@ -481,7 +477,7 @@ msgstr "No Sabe" msgid "Dormant" msgstr "Latente" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Droga" @@ -490,7 +486,7 @@ msgstr "Droga" msgid "Drug Prohibition" msgstr "Prohibición de Droga" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicación de Prohibición de Droga" @@ -527,12 +523,12 @@ msgstr "Efectos colaterales de la droga" msgid "Drugs" msgstr "Drogas" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Correo electrónico" @@ -546,15 +542,7 @@ msgstr "Dirección de correo electrónico" msgid "Empirical treatment" msgstr "Tratamiento empírico" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "Activar formulario de solicitud de análisis tipo BIKA" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "Activar alerta de valores críticos" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -563,7 +551,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "Etnias" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnia" @@ -571,7 +559,7 @@ msgstr "Etnia" msgid "Ethnicity Name" msgstr "Nombre de Etnia" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Ejemplo de etnia, Asiático, Africano, etc" @@ -583,21 +571,21 @@ msgstr "Tratamiento Sintomático" msgid "Failed ajax call: %s" msgstr "Llamada fallida ajax: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "Nombre del padre" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Pies/pulgadas" @@ -609,11 +597,11 @@ msgstr "Femenino" msgid "File" msgstr "Archivo" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, pueden ser incluido en los correos electrónicos de los pacientes si ésta opción está habilitada" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Archivos adjuntos a resultados, por ejemplo fotos de microscopio, se incluirán en los correos electrónicos a los pacientes si esta opción está habilitada. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -640,8 +628,8 @@ msgstr "Nombre completo" msgid "Fullname" msgstr "Nombre completo" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Género" @@ -654,35 +642,35 @@ msgstr "Las áreas geográficas pueden ser caracterizadas con alto, intermedio o msgid "Geographical distribution" msgstr "Distribución geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "Identificador de garante" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "Primer nombre del garante" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "Número de Teléfono del Garante (Empresa)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "Número de Teléfono del Garante (Fijo)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "Número de Teléfono del Garante (Celular)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "Apellido del Garante" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "Dirección postal del garante" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "Extensión de Salud para SENAITE" @@ -694,7 +682,7 @@ msgstr "Altura" msgid "Hispanic or Latino" msgstr "Hispánico o latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "Historial de Resultados" @@ -711,11 +699,11 @@ msgstr "Histerestomía" msgid "ICD Code" msgstr "Código CIE" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Identificador" @@ -724,11 +712,11 @@ msgstr "Tipo de Identificador" msgid "Identifier Types" msgstr "Tipos de Identificador" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente ." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -736,7 +724,7 @@ msgstr "Si se selecciona, los informes de resultados también se enviarán autom msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "Si se selecciona, los informes de resultados también se enviarán automáticamente al paciente. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente'." -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que también se completarán más cambios en el Cliente para esta configuración." @@ -744,19 +732,15 @@ msgstr "Si se selecciona, la configuración se heredará del Cliente, por lo que msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "Si se selecciona, la configuración para la distribución de informes de resultados a los pacientes se heredará de la Configuración de Bika, por lo que también se completarán los cambios adicionales en la Configuración de Bika para esta configuración." -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "Si está habilitado, muestra automáticamente una ventana emergente de formulario de correo electrónico para alertar al cliente sobre resultados con valores críticos cuando se carga la vista Solicitud de Análisis" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "Si se selecciona, las facturas se enviarán a la compañía de seguros. En este caso, el número de seguro será obligatorio." -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "Si está seleccionado, los Identificadores de pacientes de los clientes serán forzados a ser únicos" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Inmunización" @@ -771,13 +755,13 @@ msgstr "Formulario de Inmunización" msgid "Immunizations" msgstr "Inmunizaciones" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "Inactivo" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "Pulgadas" @@ -785,7 +769,7 @@ msgstr "Pulgadas" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "Formato incorrecto en '${title}', debería ser YYYY-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "Heredar la configuración predeterminada" @@ -798,12 +782,12 @@ msgstr "Heredar la configuración predeterminada para la distribución de result msgid "Insurance Companies" msgstr "Compañías Aseguradoras" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "Compañía Aseguradora" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "Número de Asegurado" @@ -835,11 +819,7 @@ msgstr "Facturas" msgid "Irregular" msgstr "Irregular" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "Habilita el formulario de solicitud de análisis secundario. Esta solicitud tiene algunas características que le permiten registrar más de una solicitud de análisis al mismo tiempo. Es útil si se supone que debe registrar una gran cantidad de solicitudes de análisis al mismo tiempo." - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Alergias conocidas del paciente para mantener información que puede ayudar a la interpretación de la reacción al medicamento" @@ -847,11 +827,11 @@ msgstr "Alergias conocidas del paciente para mantener información que puede ayu msgid "Known undesirable effects of the drug" msgstr "Efectos indeseables y conocidos del medicamento" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "Libras" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Ubicación" @@ -859,11 +839,6 @@ msgstr "Ubicación" msgid "Male" msgstr "Masculino" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "Valor Crítico Máximo" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "Tipo de ciclo menstrual" @@ -876,11 +851,6 @@ msgstr "Métodos incluidos en el programa de Acreditación ${accreditation_body} msgid "Mild" msgstr "Leve" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "Valor Crítico Mínimo" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Teléfono Celular" @@ -901,11 +871,11 @@ msgstr "Mes" msgid "Months" msgstr "Meses" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Nombre de la madre" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nombre" @@ -917,7 +887,7 @@ msgstr "Americano nativo" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Hawaiano o Isleño del Pacífico" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "No se encontraron resultados en el historial" @@ -1005,7 +975,7 @@ msgstr "Archivos del paciente" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "Identificador del paciente" @@ -1017,33 +987,33 @@ msgstr "Identificadores de Pacientes" msgid "Patient Information" msgstr "Información del Paciente" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificadores adicionales del paciente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "Unidades de altura del paciente" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "Unidades de perímetro de cintura del paciente" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "Unidades de peso del paciente" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historial médico del paciente" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacientes" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Número de Teléfono" @@ -1055,7 +1025,7 @@ msgstr "Número de Teléfono (Fijo)" msgid "Phone (mobile)" msgstr "Número de Teléfono (Celular)" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "Precio" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referencia Primaria" @@ -1092,7 +1062,7 @@ msgstr "Referencia Primaria" msgid "Print date:" msgstr "Fecha de Impresión" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "Provincia" @@ -1112,7 +1082,6 @@ msgstr "Publicado por" msgid "QC Results" msgstr "Resultados de CC" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "Rango" @@ -1131,7 +1100,7 @@ msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Observaciones" @@ -1143,14 +1112,6 @@ msgstr "Responsables" msgid "Result" msgstr "Resultado" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "Resultado excede el valor crítico" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "Resultado dentro del rango crítico" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "Resultado fuera del rango especificado por el cliente." @@ -1159,9 +1120,9 @@ msgstr "Resultado fuera del rango especificado por el cliente." msgid "Results" msgstr "Resultados" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "Permitido el adjuntado de resultados" @@ -1169,7 +1130,7 @@ msgstr "Permitido el adjuntado de resultados" msgid "Results interpretation" msgstr "Interpretación de resultados" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "SENAITE Salud" @@ -1209,7 +1170,7 @@ msgstr "Seleccione un tipo de inmunización.
La inmunización activa implic msgid "Select a type of treatment." msgstr "Seleccionar el tipo de tratamiento" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación del paciente' desde la vista Cliente o en la pestaña 'Preferencias de publicación del paciente'." @@ -1217,7 +1178,7 @@ msgstr "Seleccione los canales preferidos que se utilizarán para enviar los inf msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "Seleccione los canales preferidos que se utilizarán para enviar los informes de resultados a los pacientes. Esta configuración se puede anular en la pestaña 'Preferencias de publicación' del paciente." -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "Enviar facturas a la compañía de seguros" @@ -1241,19 +1202,15 @@ msgstr "Niveles de severidad permitido" msgid "Shock treatment" msgstr "Tratamiento del Shock" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "¿Debería ser el campo Doctor obligatorio cuando se crea un caso?" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "Mostrar una ventana emergente en el correo electrónico del cliente cuando el un resultado excede un valor crítico" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratamiento específico" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Comienzo" @@ -1304,7 +1261,7 @@ msgstr "síndromes" msgid "Taxes" msgstr "Impuestos" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "Test" @@ -1312,15 +1269,15 @@ msgstr "Test" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "Los resultados de la prueba tienen un nivel de confianza de ${lab_confidence}%" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "El número de identificación (número de seguro) de la persona cuyo contrato cubre al paciente." -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "El paciente y el garante son la misma persona." -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "El paciente es el garante." @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "Este documento no se reproducirá excepto en su totalidad, sin la aprobación por escrito de $ {name_lab}" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Título" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Tratamientos" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Fecha de finalización del viaje" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Fecha de inicio del viaje" @@ -1393,11 +1350,7 @@ msgstr "Fecha de inicio del viaje" msgid "Unit" msgstr "Unidad" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "Unidades" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "Use el símbolo '/' para permitir el envío de unidades múltiples" @@ -1410,11 +1363,11 @@ msgstr "Nombre de Usuario" msgid "VAT" msgstr "IVA" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro de Vacunación" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centros de Vacunación" @@ -1423,14 +1376,6 @@ msgstr "Centros de Vacunación" msgid "Validation failed: '${value}' is not unique" msgstr "Validación fallida: '${value}' no es único" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "Validación fallida: el valor crítico máximo debe ser mayor que el valor crítico mínimo" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "Validación fallida: el valor crítico mínimo debe ser numérico" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "Validado por:" @@ -1480,14 +1425,6 @@ msgstr "formato_fecha_corta_selector de fechas" msgid "days" msgstr "días" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "valor crítico máximo" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "valor crítico mínimo" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "Meses" diff --git a/bika/health/locales/es_MX/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_MX/LC_MESSAGES/senaite.core.po index ea83be9c..ce8aa280 100644 --- a/bika/health/locales/es_MX/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_MX/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/senaite/teams/87046/es_MX/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/es_MX/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_MX/LC_MESSAGES/senaite.health.po index 96e4a1f8..d6eda2d5 100644 --- a/bika/health/locales/es_MX/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_MX/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/senaite/teams/87046/es_MX/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/es_PE/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_PE/LC_MESSAGES/senaite.core.po index 41ea3d04..0e1f7255 100644 --- a/bika/health/locales/es_PE/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_PE/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Peru) (https://www.transifex.com/senaite/teams/87046/es_PE/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/es_PE/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_PE/LC_MESSAGES/senaite.health.po index ed73afa1..d23174b0 100644 --- a/bika/health/locales/es_PE/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_PE/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Spanish (Peru) (https://www.transifex.com/senaite/teams/87046/es_PE/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Lista de los subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista de inmunizaciones administradas al paciente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista de tratamientos y drogas administradas al paciente" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista de lugares visitados por el paciente" @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activo" @@ -67,7 +67,7 @@ msgstr "Tratmiento activo" msgid "Add" msgstr "Añadir" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Síntomas adicionales no cubiertos por códigos ICD pueden ser ingresados aquí" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificadores adicionales" @@ -96,27 +96,23 @@ msgstr "Agentes Etiológicos" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Edad" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todos" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Fecha de nacimiento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Fecha de nacimiento es estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar de nacimiento" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "FechaNacimiento" @@ -216,7 +212,7 @@ msgstr "Teléfono del negocio" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Cambios guardados." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Ciudadanía" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado Civil" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Instituciones de referencia" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "Colectivos en riesgo" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Tratamiento conservador" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Pais" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País y estado" @@ -356,7 +352,7 @@ msgstr "País y estado" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Fecha" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descripción" @@ -431,7 +427,7 @@ msgstr "Enfermedad" msgid "Diseases" msgstr "Enfermedades" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "ID de Doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "No lo sé" msgid "Dormant" msgstr "Inactivos" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Droga" @@ -490,7 +486,7 @@ msgstr "Droga" msgid "Drug Prohibition" msgstr "Prohibición de Droga" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicación de Prohibición de Droga" @@ -527,12 +523,12 @@ msgstr "Efectos laterales de droga" msgid "Drugs" msgstr "Drogas" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Número EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Dirección de correo electrónico" msgid "Empirical treatment" msgstr "Tratamiento emírico" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -563,7 +551,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnicidad" @@ -571,7 +559,7 @@ msgstr "Etnicidad" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etnicidad, ej Asiático, Africano, etc." @@ -583,21 +571,21 @@ msgstr "Tratamiento expectante/sintomático" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Mujer" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nombre completo" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Género" @@ -654,35 +642,35 @@ msgstr "Las áreas geográficas pueden caracterizarse por tener niveles altos, i msgid "Geographical distribution" msgstr "Distribución geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Hispánico o Latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "Código ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificador" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Identificador" @@ -724,11 +712,11 @@ msgstr "Tipo de Identificador" msgid "Identifier Types" msgstr "Tipos de identificadores" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Inmunización" @@ -771,13 +755,13 @@ msgstr "Formulario de inmunización" msgid "Immunizations" msgstr "Inmunizaciones" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Alergias del paciente conocidas para proveer información que ayude la interpretación a la reacción a un fármaco" @@ -847,11 +827,11 @@ msgstr "Alergias del paciente conocidas para proveer información que ayude la i msgid "Known undesirable effects of the drug" msgstr "Efectos no deseados conocidos de la droga" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Lugar" @@ -859,11 +839,6 @@ msgstr "Lugar" msgid "Male" msgstr "Hombre" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Teléfono móvil" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Apellido Materno" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nombre" @@ -917,7 +887,7 @@ msgstr "Nativo americano" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Nativo Hawaiano u Otro Isleño del Pacífico" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID del Paciente" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificadores adicionales del paciente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historia médica pasada del paciente." -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacientes" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Teléfono" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referencia Primaria" @@ -1092,7 +1062,7 @@ msgstr "Referencia Primaria" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Hechos Relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Observaciones" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "Seleccione un tipo de inmunización.
La inmunización activa impli msgid "Select a type of treatment." msgstr "Seleccione un tipo de tratamiento" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Tratamiento de shock" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratamiento específico" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Inicio" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Título" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Tratamientos" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Fecha de Fin de Viaje" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Fecha de Inicio de Viaje" @@ -1393,11 +1350,7 @@ msgstr "Fecha de Inicio de Viaje" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro de Vacunación" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centros de Vacunación" @@ -1423,14 +1376,6 @@ msgstr "Centros de Vacunación" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "aa-mm-dd" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/es_UY/LC_MESSAGES/senaite.core.po b/bika/health/locales/es_UY/LC_MESSAGES/senaite.core.po index b91bcedf..03b7f911 100644 --- a/bika/health/locales/es_UY/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/es_UY/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Uruguay) (https://www.transifex.com/senaite/teams/87046/es_UY/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/es_UY/LC_MESSAGES/senaite.health.po b/bika/health/locales/es_UY/LC_MESSAGES/senaite.health.po index 20f2c13d..27972dea 100644 --- a/bika/health/locales/es_UY/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/es_UY/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Uruguay) (https://www.transifex.com/senaite/teams/87046/es_UY/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/fa/LC_MESSAGES/senaite.core.po b/bika/health/locales/fa/LC_MESSAGES/senaite.core.po index 6fa6fc42..36d6557e 100644 --- a/bika/health/locales/fa/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/fa/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (https://www.transifex.com/senaite/teams/87046/fa/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/fa/LC_MESSAGES/senaite.health.po b/bika/health/locales/fa/LC_MESSAGES/senaite.health.po index 641052fb..328ce69d 100644 --- a/bika/health/locales/fa/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/fa/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (https://www.transifex.com/senaite/teams/87046/fa/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/fa_IR/LC_MESSAGES/senaite.core.po b/bika/health/locales/fa_IR/LC_MESSAGES/senaite.core.po index c696363d..fa662188 100644 --- a/bika/health/locales/fa_IR/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/fa_IR/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (Iran) (https://www.transifex.com/senaite/teams/87046/fa_IR/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/fa_IR/LC_MESSAGES/senaite.health.po b/bika/health/locales/fa_IR/LC_MESSAGES/senaite.health.po index 76da2890..6e4b6abc 100644 --- a/bika/health/locales/fa_IR/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/fa_IR/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (Iran) (https://www.transifex.com/senaite/teams/87046/fa_IR/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/fi/LC_MESSAGES/senaite.core.po b/bika/health/locales/fi/LC_MESSAGES/senaite.core.po index 1da39c09..a68434fa 100644 --- a/bika/health/locales/fi/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/fi/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish (https://www.transifex.com/senaite/teams/87046/fi/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/fi/LC_MESSAGES/senaite.health.po b/bika/health/locales/fi/LC_MESSAGES/senaite.health.po index 61772e1f..48198350 100644 --- a/bika/health/locales/fi/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/fi/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish (https://www.transifex.com/senaite/teams/87046/fi/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/fr/LC_MESSAGES/senaite.core.po b/bika/health/locales/fr/LC_MESSAGES/senaite.core.po index e41dbd11..3709ed21 100644 --- a/bika/health/locales/fr/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/fr/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (https://www.transifex.com/senaite/teams/87046/fr/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/fr/LC_MESSAGES/senaite.health.po b/bika/health/locales/fr/LC_MESSAGES/senaite.health.po index ecc4765e..62138afc 100644 --- a/bika/health/locales/fr/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/fr/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: French (https://www.transifex.com/senaite/teams/87046/fr/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Une liste de sous-types d'agents étiologiques." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Une liste de vaccins administrés au patient." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Une liste de traitements et médicaments administrés au patient." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Une liste des lieux visités par le patient." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Actif" @@ -67,7 +67,7 @@ msgstr "Traitement en cours" msgid "Add" msgstr "Ajouter" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Indentifiants additionnels" @@ -96,27 +96,23 @@ msgstr "Agents étiologiques" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Age" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Tout" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Date de naissance" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "La date de naissance est éstimée à" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lieu de naissance" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Date de naissance" @@ -216,7 +212,7 @@ msgstr "Téléphone professionnel" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Modifications sauvegardées." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Nationalité" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Etat civil" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Institutions référentes" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "Populations à risque" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Traitement conservateur" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Pays" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Pays et département" @@ -356,7 +352,7 @@ msgstr "Pays et département" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Date" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Description" @@ -431,7 +427,7 @@ msgstr "Maladie" msgid "Diseases" msgstr "Maladies" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Docteur" msgid "Doctor ID" msgstr "ID du docteur" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Ne sais pas" msgid "Dormant" msgstr "En sommeil" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Médicament" @@ -490,7 +486,7 @@ msgstr "Médicament" msgid "Drug Prohibition" msgstr "Médicament contrindiqué" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Motif du médicament contrindiqué" @@ -527,12 +523,12 @@ msgstr "Effets secondaires du médicament" msgid "Drugs" msgstr "Médicaments" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Adresse email" msgid "Empirical treatment" msgstr "Traitement empirique" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fin" @@ -563,7 +551,7 @@ msgstr "Fin" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Origine ethnique" @@ -571,7 +559,7 @@ msgstr "Origine ethnique" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Origine ethnique p. ex. Asiatique, Africain, etc." @@ -583,21 +571,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Genre" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Caractéristique / Particularité" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Femelle" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nom complet" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Genre" @@ -654,35 +642,35 @@ msgstr "Les zones géographiques peuvent être caractérisées comme ayant des h msgid "Geographical distribution" msgstr "Distribution géographique" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Hispanique ou Latin" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identifiant" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Type d'identifiant" @@ -724,11 +712,11 @@ msgstr "Type d'identifiant" msgid "Identifier Types" msgstr "Types d'identifiant" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Vaccination" @@ -771,13 +755,13 @@ msgstr "Type de vaccination" msgid "Immunizations" msgstr "Vaccinations" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Allergies connues du patient pouvant aider à l'interprétation des réactions médicamenteuses" @@ -847,11 +827,11 @@ msgstr "Allergies connues du patient pouvant aider à l'interprétation des réa msgid "Known undesirable effects of the drug" msgstr "Effet indésirable connu du médicament" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Lieu" @@ -859,11 +839,6 @@ msgstr "Lieu" msgid "Male" msgstr "Mâle" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Téléphone mobile" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Nom de la mère" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nom" @@ -917,7 +887,7 @@ msgstr "Américain natif" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Insulaire natif du Pacifique ou de Hawaï" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID du patient" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identifiants additionnels du patient" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historique médical du patient" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Patients" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Téléphone" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Photo" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Référent principal" @@ -1092,7 +1062,7 @@ msgstr "Référent principal" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Faits pertinents" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Remarques" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "Sélectionnez un type de traitement." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Traitement de choc" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Traitement spécifique" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Début" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Titre" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Traitements" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Date de fin de voyage" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Date de début de voyage" @@ -1393,11 +1350,7 @@ msgstr "Date de début de voyage" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centre de vaccination" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centres de vaccination" @@ -1423,14 +1376,6 @@ msgstr "Centres de vaccination" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "aa-mm-jj" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/hi/LC_MESSAGES/senaite.core.po b/bika/health/locales/hi/LC_MESSAGES/senaite.core.po index a5c47ef1..bee4f7c6 100644 --- a/bika/health/locales/hi/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/hi/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (https://www.transifex.com/senaite/teams/87046/hi/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/hi/LC_MESSAGES/senaite.health.po b/bika/health/locales/hi/LC_MESSAGES/senaite.health.po index f4a8d9ef..81fecc08 100644 --- a/bika/health/locales/hi/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/hi/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (https://www.transifex.com/senaite/teams/87046/hi/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/hu/LC_MESSAGES/senaite.core.po b/bika/health/locales/hu/LC_MESSAGES/senaite.core.po index 3c851e68..d4b6a953 100644 --- a/bika/health/locales/hu/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/hu/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (https://www.transifex.com/senaite/teams/87046/hu/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/hu/LC_MESSAGES/senaite.health.po b/bika/health/locales/hu/LC_MESSAGES/senaite.health.po index b01e4a42..47f45e59 100644 --- a/bika/health/locales/hu/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/hu/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (https://www.transifex.com/senaite/teams/87046/hu/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/hu_HU/LC_MESSAGES/senaite.core.po b/bika/health/locales/hu_HU/LC_MESSAGES/senaite.core.po index 0ba3c8d1..72b139b6 100644 --- a/bika/health/locales/hu_HU/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/hu_HU/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/senaite/teams/87046/hu_HU/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/hu_HU/LC_MESSAGES/senaite.health.po b/bika/health/locales/hu_HU/LC_MESSAGES/senaite.health.po index 6e9431b5..b19eaec9 100644 --- a/bika/health/locales/hu_HU/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/hu_HU/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/senaite/teams/87046/hu_HU/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/id/LC_MESSAGES/senaite.core.po b/bika/health/locales/id/LC_MESSAGES/senaite.core.po index a64cc782..d73c4efb 100644 --- a/bika/health/locales/id/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/id/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (https://www.transifex.com/senaite/teams/87046/id/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/id/LC_MESSAGES/senaite.health.po b/bika/health/locales/id/LC_MESSAGES/senaite.health.po index 87e7ebfa..13d206f7 100644 --- a/bika/health/locales/id/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/id/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (https://www.transifex.com/senaite/teams/87046/id/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/it/LC_MESSAGES/senaite.core.po b/bika/health/locales/it/LC_MESSAGES/senaite.core.po index fe7709c1..d4be64b9 100644 --- a/bika/health/locales/it/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/it/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian (https://www.transifex.com/senaite/teams/87046/it/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/it/LC_MESSAGES/senaite.health.po b/bika/health/locales/it/LC_MESSAGES/senaite.health.po index 94b3f300..49ca9660 100644 --- a/bika/health/locales/it/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/it/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Italian (https://www.transifex.com/senaite/teams/87046/it/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Un elenco di sottotipi di agente eziologico." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Una lista di immunizzatori somministrati al paziente." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Una lista di terapie e farmaci somministrati." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Una lista di posti visitati dal paziente." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Attivo" @@ -67,7 +67,7 @@ msgstr "Terapia attiva" msgid "Add" msgstr "Aggiungi" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Sintomi Aggiuntivi non coperti da codici ICD, possono essere inseriti qui." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identificativi aggiuntivi" @@ -96,27 +96,23 @@ msgstr "Agenti Eziologici" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Età" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Tutto" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data di nascita" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "La data di nascita è stimata" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Luogo di nascita" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Luogo Nascita" @@ -216,7 +212,7 @@ msgstr "Telefono Ufficio" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Modifiche salvate." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Cittadinanza" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Stato civile" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Enti RIferimento" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "Collettività a rischio" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Terapia conservativa" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Nazione" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Nazione e Stato" @@ -356,7 +352,7 @@ msgstr "Nazione e Stato" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Data" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descrizione" @@ -431,7 +427,7 @@ msgstr "Malattia" msgid "Diseases" msgstr "Malattie" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Dottore" msgid "Doctor ID" msgstr "ID Dottore" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Non Conosciuto" msgid "Dormant" msgstr "Inattivo" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Farmaco" @@ -490,7 +486,7 @@ msgstr "Farmaco" msgid "Drug Prohibition" msgstr "Divieto Farmaco" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Divieto Spiegazione Farmaco" @@ -527,12 +523,12 @@ msgstr "Controindicazioni farmaco" msgid "Drugs" msgstr "Farmaci" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Numero EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Indirizzo email" msgid "Empirical treatment" msgstr "Terapia empirica" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fine" @@ -563,7 +551,7 @@ msgstr "Fine" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Razza" @@ -571,7 +559,7 @@ msgstr "Razza" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Razza, ad esempio Asiatico, Africano, ecc." @@ -583,21 +571,21 @@ msgstr "Terapia In attesa/Sintomatica" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Aspetto" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Donna" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nome Completo" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Sesso" @@ -654,35 +642,35 @@ msgstr "Le aree geografiche possono essere caratterizzate come aventi livelli di msgid "Geographical distribution" msgstr "Distribuzione geografica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Ispanico o Latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "Codice ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificativo" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Identificazione" @@ -724,11 +712,11 @@ msgstr "Identificazione" msgid "Identifier Types" msgstr "Identificazioni" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Immunizzazione" @@ -771,13 +755,13 @@ msgstr "Forma immunizzazione" msgid "Immunizations" msgstr "Immunizzazioni" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Allergie note paziente per mantenere le informazioni che possono aiutare l'interpretazione alla reazione al farmaco" @@ -847,11 +827,11 @@ msgstr "Allergie note paziente per mantenere le informazioni che possono aiutare msgid "Known undesirable effects of the drug" msgstr "Effetti indesiderati conosciuti al farmaco" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Luogo" @@ -859,11 +839,6 @@ msgstr "Luogo" msgid "Male" msgstr "Uomo" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Cellulare" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Nome materno" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nome" @@ -917,7 +887,7 @@ msgstr "Nativo Americano" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Nativo Hawaiano o altre Isole del Pacifico" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID Paziente" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificativi aggiuntivi paziente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Storia medica passata del paziente" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pazienti" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefono" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Primario Referente" @@ -1092,7 +1062,7 @@ msgstr "Primario Referente" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Eventi Rilevanti" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Commenti" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "Selezionare un tipo di immunizzazione.
l'immunizzazione attiva impl msgid "Select a type of treatment." msgstr "Selezionare un tipo di terapia" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Terapia d'urto" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Terapia specifica" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Inizio" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Titolo" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Terapie" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Data Fine Viaggio" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Data inizio Viaggio" @@ -1393,11 +1350,7 @@ msgstr "Data inizio Viaggio" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro Vaccinazione" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centri Vaccinazione" @@ -1423,14 +1376,6 @@ msgstr "Centri Vaccinazione" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "yy-mm-dd" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ja/LC_MESSAGES/senaite.core.po b/bika/health/locales/ja/LC_MESSAGES/senaite.core.po index 8740c030..8b6575b6 100644 --- a/bika/health/locales/ja/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ja/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Japanese (https://www.transifex.com/senaite/teams/87046/ja/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ja/LC_MESSAGES/senaite.health.po b/bika/health/locales/ja/LC_MESSAGES/senaite.health.po index ebb262ed..deaee5e4 100644 --- a/bika/health/locales/ja/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ja/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Japanese (https://www.transifex.com/senaite/teams/87046/ja/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ka_GE/LC_MESSAGES/senaite.core.po b/bika/health/locales/ka_GE/LC_MESSAGES/senaite.core.po index 0097bad9..91a26587 100644 --- a/bika/health/locales/ka_GE/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ka_GE/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Georgian (Georgia) (https://www.transifex.com/senaite/teams/87046/ka_GE/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ka_GE/LC_MESSAGES/senaite.health.po b/bika/health/locales/ka_GE/LC_MESSAGES/senaite.health.po index 6523ea98..2d46b708 100644 --- a/bika/health/locales/ka_GE/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ka_GE/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Georgian (Georgia) (https://www.transifex.com/senaite/teams/87046/ka_GE/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/kn/LC_MESSAGES/senaite.core.po b/bika/health/locales/kn/LC_MESSAGES/senaite.core.po index 47fb68ef..10865267 100644 --- a/bika/health/locales/kn/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/kn/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kannada (https://www.transifex.com/senaite/teams/87046/kn/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/kn/LC_MESSAGES/senaite.health.po b/bika/health/locales/kn/LC_MESSAGES/senaite.health.po index 422ac8f1..fce2f11f 100644 --- a/bika/health/locales/kn/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/kn/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kannada (https://www.transifex.com/senaite/teams/87046/kn/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/lo_LA/LC_MESSAGES/senaite.core.po b/bika/health/locales/lo_LA/LC_MESSAGES/senaite.core.po index aae348cb..1537c93d 100644 --- a/bika/health/locales/lo_LA/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/lo_LA/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lao (Laos) (https://www.transifex.com/senaite/teams/87046/lo_LA/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/lo_LA/LC_MESSAGES/senaite.health.po b/bika/health/locales/lo_LA/LC_MESSAGES/senaite.health.po index 6cd7ae26..a5d62775 100644 --- a/bika/health/locales/lo_LA/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/lo_LA/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Lao (Laos) (https://www.transifex.com/senaite/teams/87046/lo_LA/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "ລາຍການປະເພດຍ່ອຍຂອງສາເຫດພະຍາດ" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "ລາຍການຢາກັນພະຍາດທີ່ສັກໃຫ້ຄົນເຈັບ" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "ລາຍການປິ່ນປົວ ແລະ ຢາທີ່ໃຫ້ ຄົນເຈັບ" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "ລາຍການສະຖານທີ່ ທີ່ຄົນເຈັບໄປຮັບການກວດພະຍາດ" @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "ໃຊ້ງານຢູ່" @@ -67,7 +67,7 @@ msgstr "ການປິ່ນປົວທີ່ຮັບຢູ່ໃນປັດ msgid "Add" msgstr "ເພີ່ມເຂົ້າ" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "ສາມາດປ້ອນຂໍ້ມູນ ອາການສະແດງອອກທີ່ບັນຊີລາຍການ ມະຕິພະຍາດສາກົນ: ICD ບໍ່ໄດ້ກວມເອົາ, ໄດ້ຢູ່ບ່ອນນີ້." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "ຕົວລະລຸຕົວຕົນເພີ່ມ" @@ -96,27 +96,23 @@ msgstr "ຕົວແທນສາເຫດພະຍາດ" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "ອາຍຸ" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "ທັງໝົດ" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "ວັນເດືອນປີເກີດ" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "ວັນເດືອນປີເກີດໄດ້ຄາດຄະເນເອົາ" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "ບ່ອນເກີດ" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "ວັນເກີດ" @@ -216,7 +212,7 @@ msgstr "ໂທລະສັບທາງທຸລະກິດ" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "ບັນທຶກການປ່ຽນແປງແລ້ວ" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "ສັນຊາດ" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "ສະຖານະການແຕ່ງງານ" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "ສະຖາບັນທີ່ອ້າງອີງ" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "ກຸ່ມທີ່ມີຄວາມສ່ຽງ" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "ການປິ່ນປົວແບບເກົ່າ" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "ປະເທດ" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "ປະເທດ ແລະ ແຂວງ" @@ -356,7 +352,7 @@ msgstr "ປະເທດ ແລະ ແຂວງ" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "ວັນທີ" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "ລາຍລະອຽດ" @@ -431,7 +427,7 @@ msgstr "ພະຍາດ" msgid "Diseases" msgstr "ບັນດາພະຍາດ" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "ທ່ານໝໍ" msgid "Doctor ID" msgstr "ເລກປະຈຳໂຕທ່ານໝໍ" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "ບໍ່ຮູ້" msgid "Dormant" msgstr "ຢູ່ຊື່ໆ" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "ຢາ" @@ -490,7 +486,7 @@ msgstr "ຢາ" msgid "Drug Prohibition" msgstr "ຢາຕ້ອງຫ້າມ" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "ຄຳອະທິບາຍກ່ຽວກັບຢາຕ້ອງຫ້າມ" @@ -527,12 +523,12 @@ msgstr "ອາການຂ້າງຄຽງຢາ" msgid "Drugs" msgstr "ຢາ" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "ເລກທີ EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "ອີເມວລ໌" @@ -546,15 +542,7 @@ msgstr "ທີ່ຢູ່ ອີເມວລ໌" msgid "Empirical treatment" msgstr "ການປິ່ນປົວຕາມອາການຕົວຈິງ" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "ສິ້ນສຸດ" @@ -563,7 +551,7 @@ msgstr "ສິ້ນສຸດ" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "ເຊື້ອຊາດ" @@ -571,7 +559,7 @@ msgstr "ເຊື້ອຊາດ" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "ເຊື້ອຊາດ ເຊັ່ນ ອາຊຽນ, ອາຟຣິກາ, ຯລໆ." @@ -583,21 +571,21 @@ msgstr "ຄາດຫວັງ/ການປິ່ນປົວຕາມອາກ msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "ໂທລະສານ" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "ລັກສະນະສະເພາະ" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "ຍິງ" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "ຊື່ເຕັມ" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "ເພດ" @@ -654,35 +642,35 @@ msgstr "ພື້ນທີ່ທາງພູມສັນຖານ ສາມາ msgid "Geographical distribution" msgstr "ການກະຈາຍທາງພູມສາດ" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "ທາງພາສາສະເປນ ຫຼື ລາຕິນອາເມຣິກາ" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "ລະຫັດ ICD " -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "ໂຕລະບຸຕົວຕົນ" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "ປະເພດລະບຸຕົວຕົນ" @@ -724,11 +712,11 @@ msgstr "ປະເພດລະບຸຕົວຕົນ" msgid "Identifier Types" msgstr "ປະເພດລະບຸຕົວຕົນ" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "ພູມຄຸ້ມກັນ" @@ -771,13 +755,13 @@ msgstr "ແບບພູມຄຸ້ມກັນ" msgid "Immunizations" msgstr "ພູມຄຸ້ມກັນ" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "ໃຫ້ຮູ້ຈັກອາການພູມແພ້ຂອງຜູ້ປ່ວຍ ເພື່ອຮັກສາຂໍ້ມູນ ທີ່ຈະສາມາດຊ່ອຍໃນການຕີຄວາມປະຕິກິລິຍາການຕ້ານຢາ" @@ -847,11 +827,11 @@ msgstr "ໃຫ້ຮູ້ຈັກອາການພູມແພ້ຂອງຜ msgid "Known undesirable effects of the drug" msgstr "ໃຫ້ຮູ້ອາການທີ່ບໍ່ເພິ່ງປາຖະໜາຂອງຢາ" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "ສະຖານທີ່" @@ -859,11 +839,6 @@ msgstr "ສະຖານທີ່" msgid "Male" msgstr "ຊາຍ" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "ໂທລະສັບມືຖື" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "ຊື່ແມ່" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "ຊື່" @@ -917,7 +887,7 @@ msgstr "ອະເມຣິກັນໂດຍກຳເນີດ" msgid "Native Hawaiian or Other Pacific Islander" msgstr "ຄົນຮາຍວາຍ ຫຼື ໝູ່ເກາະປາຊີຟິກອື່ນໆໂດຍກຳເນີດ" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ເລກປະຈຳໂຕຄົນເຈັບ" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "ຕົວລະບຸເພີ່ມຂອງຄົນເຈັບ" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "ປະຫວັດທາງການແພດຜ່ານມາຂອງຄົນເຈັບ" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "ຄົນເຈັບ" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "ໂທລະສັບ" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "ຮູບ" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "ຜູ້ອ້າງອີງຫຼັກ" @@ -1092,7 +1062,7 @@ msgstr "ຜູ້ອ້າງອີງຫຼັກ" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "ຄວາມຈິງທີ່ກ່ຽວຂ້ອງ" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "ໝາຍເຫດ" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "ໃຫ້ເລືອກຊະນິດຂອງການສ້າງພ msgid "Select a type of treatment." msgstr "ໃຫ້ເລືອກປະເພດຂອງການປິ່ນປົວ." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "ການປິ່ນປົວອາການຊັອກ" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "ການປິ່ນປົວແບບເຈາະຈົງ" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "ເລີ່ມ" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "ຫົວເລື່ອງ" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "ການປິ່ນປົວ" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "ວັນທີສິ້ນສຸດເດີນທາງ" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "ວັນທີເລີ່ມເດີນທາງ" @@ -1393,11 +1350,7 @@ msgstr "ວັນທີເລີ່ມເດີນທາງ" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "ສູນສັກຢາປ້ອງກັນ" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "ສູນສັກຢາປ້ອງກັນ" @@ -1423,14 +1376,6 @@ msgstr "ສູນສັກຢາປ້ອງກັນ" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "yy-mm-dd" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/lt/LC_MESSAGES/senaite.core.po b/bika/health/locales/lt/LC_MESSAGES/senaite.core.po index 59022b1e..7bab8430 100644 --- a/bika/health/locales/lt/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/lt/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian (https://www.transifex.com/senaite/teams/87046/lt/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/lt/LC_MESSAGES/senaite.health.po b/bika/health/locales/lt/LC_MESSAGES/senaite.health.po index 5cb3bc41..d69e623c 100644 --- a/bika/health/locales/lt/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/lt/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian (https://www.transifex.com/senaite/teams/87046/lt/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/mn/LC_MESSAGES/senaite.core.po b/bika/health/locales/mn/LC_MESSAGES/senaite.core.po index 4a3f134a..fd7c243e 100644 --- a/bika/health/locales/mn/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/mn/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mongolian (https://www.transifex.com/senaite/teams/87046/mn/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/mn/LC_MESSAGES/senaite.health.po b/bika/health/locales/mn/LC_MESSAGES/senaite.health.po index a81c6720..263ad597 100644 --- a/bika/health/locales/mn/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/mn/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mongolian (https://www.transifex.com/senaite/teams/87046/mn/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/nl/LC_MESSAGES/senaite.core.po b/bika/health/locales/nl/LC_MESSAGES/senaite.core.po index 37372840..7bc6f7e2 100644 --- a/bika/health/locales/nl/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/nl/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (https://www.transifex.com/senaite/teams/87046/nl/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/nl/LC_MESSAGES/senaite.health.po b/bika/health/locales/nl/LC_MESSAGES/senaite.health.po index d21723da..6d46c947 100644 --- a/bika/health/locales/nl/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/nl/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (https://www.transifex.com/senaite/teams/87046/nl/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/pl/LC_MESSAGES/senaite.core.po b/bika/health/locales/pl/LC_MESSAGES/senaite.core.po index cf3d17ab..4f55f5d3 100644 --- a/bika/health/locales/pl/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/pl/LC_MESSAGES/senaite.core.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Piotr Turek , 2020\n" "Language-Team: Polish (https://www.transifex.com/senaite/teams/87046/pl/)\n" @@ -22,20 +22,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Lista podtypów czynników etiologicznych" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista szczepień pacjenta" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista terapii i przepisanych pacjentowi leków" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista placówek, w których przebywał pacjent" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Aktywne" @@ -54,7 +54,7 @@ msgstr "Leczenie czynne" msgid "Add" msgstr "Dodaj" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "Dodatkowe identyfikatory" @@ -62,7 +62,7 @@ msgstr "Dodatkowe identyfikatory" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Tu mogą być wpisane dodatkowe objawy, nie objęte klasyfikacją ICD, " -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identyfikatory dodatkowe" @@ -78,31 +78,27 @@ msgstr "Czynniki Etiologiczne" msgid "Aetiologic agent" msgstr "Czynnik Etiologiczny" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Wiek" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Zezwól na dystrybucję wyników wśród pacjentów" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Zezwól na dystrybucję wyników do tego pacjenta" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anonimowy" @@ -134,19 +130,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data urodzenia" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Przybliżona data urodzenia" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Miejsce urodzenia" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Data urodzenia" @@ -168,7 +164,7 @@ msgstr "Telefon służbowy" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "Przypadek" @@ -217,17 +213,17 @@ msgstr "Zmiany zachowane." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Sprawdź, czy u pacjenta występują różne poziomy stresu (brak, łagodny, umiarkowany, silny) dla objawu" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Obywatelstwo" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Stan cywilny" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "Klient" @@ -241,16 +237,16 @@ msgstr "Identyfikator ID jednostki zlecającej badanie " #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "Identyfikator PID jednostki zlecającej badanie" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "Identyfikator ID Pacjenta jednostki zlecającej badanie" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identyfikator ID Pacjenta Jednostki zlecającej badanie musi być wyjątkowy" @@ -259,7 +255,7 @@ msgid "Clients" msgstr "Jednostki zlecające badania" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Kod" @@ -271,7 +267,7 @@ msgstr "Grupy ryzyka" msgid "Company Name" msgstr "Nazwa firmy" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Zgoda na SMS" @@ -279,15 +275,15 @@ msgstr "Zgoda na SMS" msgid "Conservative treatment" msgstr "Leczenie zachowawcze" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Kraj" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Kraj i województwo" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Data" @@ -295,13 +291,13 @@ msgstr "Data" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "Domyślne ustawienia publikacji dla Pacjentów" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Opis" @@ -314,7 +310,7 @@ msgstr "Choroba" msgid "Diseases" msgstr "Choroby" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "Powiat" @@ -330,7 +326,7 @@ msgstr "Lekarz" msgid "Doctor ID" msgstr "Identyfikator ID lekarza" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "Pole lekarza jest obowiązkowe w przypadkach" @@ -364,7 +360,7 @@ msgstr "Nie Znane" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Lek" @@ -373,7 +369,7 @@ msgstr "Lek" msgid "Drug Prohibition" msgstr "Zakaz stosowania leku" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Uzasadnienie zakazu stosowania leku" @@ -405,12 +401,12 @@ msgstr "Działania niepożądane leku" msgid "Drugs" msgstr "Leki" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "E-mail" @@ -424,15 +420,7 @@ msgstr "Adres E-mail" msgid "Empirical treatment" msgstr "Leczenie empiryczne" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Koniec" @@ -440,7 +428,7 @@ msgstr "Koniec" msgid "Ethnicities" msgstr "Pochodzenie etniczne" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Pochodzenie etniczne" @@ -448,7 +436,7 @@ msgstr "Pochodzenie etniczne" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Pochodzenie etniczne np. Azjata, Afrykanin itp." @@ -460,21 +448,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "Failed ajax call: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "Imię ojca" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Faks" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Cecha" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Stopy/cale" @@ -486,11 +474,11 @@ msgstr "Żeńska" msgid "File" msgstr "plik" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjenta, jeśli ta opcja jest włączona" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." @@ -509,8 +497,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Płeć" @@ -523,31 +511,31 @@ msgstr "Obszary geograficzne, którym można przypisać wysoki, średni lub nisk msgid "Geographical distribution" msgstr "Rozmieszczenie geograficzne" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "ID Ubezpieczyciela" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -555,7 +543,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Hiszpanie lub Latynosi" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "Wyniki historyczne" @@ -567,11 +555,11 @@ msgstr "Godziny postu" msgid "ICD Code" msgstr "Kod ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identyfikator" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Typ dokumentu tożsamości" @@ -579,11 +567,11 @@ msgstr "Typ dokumentu tożsamości" msgid "Identifier Types" msgstr "Rodzaje dowodu tożsamości" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta." -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." @@ -591,7 +579,7 @@ msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysy msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "Jeśli zaznaczone, raporty wyników będą również automatycznie wysyłane do pacjenta. To ustawienie można zastąpić na karcie „Preferencje publikacji” pacjenta." -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "Jeśli zaznaczone, ustawienia zostaną odziedziczone od klienta, więc dalsze zmiany w kliencie dla tego ustawienia również zostaną wypełnione." @@ -599,19 +587,15 @@ msgstr "Jeśli zaznaczone, ustawienia zostaną odziedziczone od klienta, więc d msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "Jeśli ta opcja jest zaznaczona, ustawienia dystrybucji raportów wyników wśród pacjentów zostaną odziedziczone z Senaite Setup, więc dalsze zmiany w Senaite Setup dla tego ustawienia również zostaną wypełnione." -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "Jeśli zaznaczone, faktury zostaną wysłane do firmy ubezpieczeniowej. W takim przypadku numer ubezpieczenia będzie obowiązkowy." -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "Jeśli ta opcja zostanie wybrana, identyfikatory pacjenta będą musiały być unikalne" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Szczepienie" @@ -625,11 +609,11 @@ msgstr "Formularz szczepienia" msgid "Immunizations" msgstr "Szczepienia" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "Cale" @@ -637,7 +621,7 @@ msgstr "Cale" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "Niepoprawny format daty w '${title}', powinien być w postaci RRRR-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "Dziedzicz ustawienia domyślne" @@ -649,11 +633,11 @@ msgstr "" msgid "Insurance Companies" msgstr "Firmy ubezpieczeniowe" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "Firma ubezpieczeniowa" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "Numer ubezpieczenia" @@ -673,11 +657,7 @@ msgstr "Faktury" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Znane reakcje uczuleniowe Pacjenta pomocne w interpretacji reakcji na leki" @@ -685,11 +665,11 @@ msgstr "Znane reakcje uczuleniowe Pacjenta pomocne w interpretacji reakcji na le msgid "Known undesirable effects of the drug" msgstr "Znane niepożądane oddziaływanie leku" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "Funty" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Lokalizacja" @@ -697,16 +677,6 @@ msgstr "Lokalizacja" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Telefon Komórkowy" @@ -715,11 +685,11 @@ msgstr "Telefon Komórkowy" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -793,40 +763,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "Identyfikator ID pacjenta" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Dodatkowe identyfikatory pacjenta" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historia medyczna pacjenta" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacjenci" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefon" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Zdjęcie" @@ -843,11 +813,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "Leczenie profilaktyczno zapobiegawcze" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -869,21 +839,13 @@ msgstr "Istotne fakty" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Uwagi" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -895,7 +857,7 @@ msgstr "Wybierz typ uodpornienia.
Uodpornienie aktywne zakłada wprowadzeni msgid "Select a type of treatment." msgstr "Wybierz sposób leczenia" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -903,7 +865,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "Wyślij faktury do firmy ubezpieczeniowej." @@ -923,19 +885,15 @@ msgstr "Poziomy ważności są dozwolone" msgid "Shock treatment" msgstr "Terapia szokowa" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "Czy pole Lekarz powinno być obowiązkowe podczas tworzenia sprawy?" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Leczenie specyficzne" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Start" @@ -969,20 +927,20 @@ msgstr "Objawy" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Tytuł" @@ -1023,16 +981,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1044,11 +1002,11 @@ msgstr "" msgid "VAT" msgstr "VAT" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Ośrodek szczepień" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "Ośrodki szczepień" @@ -1056,26 +1014,10 @@ msgstr "Ośrodki szczepień" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "Biały" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "maxpanic" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "minpanic" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "utrwalenie" diff --git a/bika/health/locales/pl/LC_MESSAGES/senaite.health.po b/bika/health/locales/pl/LC_MESSAGES/senaite.health.po index 431a928d..d06c7958 100644 --- a/bika/health/locales/pl/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/pl/LC_MESSAGES/senaite.health.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Piotr Turek , 2020\n" "Language-Team: Polish (https://www.transifex.com/senaite/teams/87046/pl/)\n" @@ -31,15 +31,15 @@ msgstr "-" msgid "A list of aetiologic agent subtypes." msgstr "Lista podtypów czynników etiologicznych" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Lista szczepień pacjenta" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Lista terapii i przepisanych pacjentowi leków" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Lista placówek, w których przebywał pacjent" @@ -49,7 +49,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Aktywe" @@ -68,7 +68,7 @@ msgstr "Leczenie czynne" msgid "Add" msgstr "Dodaj" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "Dodatkowe identyfikatory" @@ -76,7 +76,7 @@ msgstr "Dodatkowe identyfikatory" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Tu mogą być wpisane dodatkowe objawy, nie objęte klasyfikacją ICD, " -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Identyfikatory dodatkowe" @@ -97,27 +97,23 @@ msgstr "Czynniki Etiologiczne" msgid "Aetiologic agent" msgstr "Czynnik Etiologiczny" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Wiek" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Wszystko" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "Zezwól na dystrybucję wyników wśród pacjentów" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "Zezwól na dystrybucję wyników do tego pacjenta" @@ -133,7 +129,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "Anonimowy" @@ -181,19 +177,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data urodzenia" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Przybliżona data urodzenia" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Miejsce urodzenia" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Data urodzenia" @@ -217,7 +213,7 @@ msgstr "Telefon służbowy" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -269,11 +265,11 @@ msgstr "Zmiany zachowane." msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "Sprawdź, czy u pacjenta występują różne poziomy stresu (brak, łagodny, umiarkowany, silny) dla objawu" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Obywatelstwo" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Stan cywilny" @@ -298,17 +294,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "Identyfikator PID jednostki zlecającej badanie" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "Identyfikator ID Pacjenta jednostki zlecającej badanie" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "Identyfikator ID Pacjenta Jednostki zlecającej badanie musi być wyjątkowy" @@ -325,7 +321,7 @@ msgid "Clients" msgstr "Jednostki zlecające badania" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "Kod" @@ -337,7 +333,7 @@ msgstr "Grupy ryzyka" msgid "Company Name" msgstr "Nazwa firmy" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "Zgoda na SMS" @@ -345,11 +341,11 @@ msgstr "Zgoda na SMS" msgid "Conservative treatment" msgstr "Leczenie zachowawcze" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Kraj" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Kraj i województwo" @@ -357,7 +353,7 @@ msgstr "Kraj i województwo" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Data" @@ -408,13 +404,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Opis" @@ -432,7 +428,7 @@ msgstr "Choroba" msgid "Diseases" msgstr "Choroby" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -448,7 +444,7 @@ msgstr "Lekarz" msgid "Doctor ID" msgstr "Identyfikator ID lekarza" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -482,7 +478,7 @@ msgstr "Nie Znane" msgid "Dormant" msgstr "Ukryte" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Lek" @@ -491,7 +487,7 @@ msgstr "Lek" msgid "Drug Prohibition" msgstr "Zakaz stosowania leku" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Uzasadnienie zakazu stosowania leku" @@ -528,12 +524,12 @@ msgstr "Działania niepożądane leku" msgid "Drugs" msgstr "Leki" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "Numer EPI" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "E-mail" @@ -547,15 +543,7 @@ msgstr "Adres Email" msgid "Empirical treatment" msgstr "Leczenie empiryczne" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Koniec" @@ -564,7 +552,7 @@ msgstr "Koniec" msgid "Ethnicities" msgstr "Pochodzenie etniczne" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Pochodzenie etniczne" @@ -572,7 +560,7 @@ msgstr "Pochodzenie etniczne" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Pochodzenie etniczne np. Azjata, Afykanin itp." @@ -584,21 +572,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "Nieudane wywołanie ajax: %s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Faks" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Cecha" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "Stopy/cale" @@ -610,11 +598,11 @@ msgstr "Żeńska" msgid "File" msgstr "Plik" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjenta, jeśli ta opcja jest włączona" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "Pliki z załącznikami do wyników, np. zdjęcia mikroskopowe będą dołączane do wiadomości e-mail do pacjentów, jeśli ta opcja jest włączona. To ustawienie można zastąpić na karcie „Preferencje publikacji pacjenta” w widoku klienta lub na karcie „Preferencje publikacji” pacjenta." @@ -641,8 +629,8 @@ msgstr "Imię i Nazwisko" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Płeć" @@ -655,35 +643,35 @@ msgstr "Obszary geograficzne, którym można przypisać wysoki, średni lub nisk msgid "Geographical distribution" msgstr "Rozmieszczenie geograficzne" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "Moduł rozszerzenia opieki zdrowotnej dla SENAITE" @@ -695,7 +683,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Hiszpanie lub Latynosi" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "Wyniki historyczne" @@ -712,11 +700,11 @@ msgstr "" msgid "ICD Code" msgstr "Kod ICD" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identyfikator" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Typ dokumentu tożsamości" @@ -725,11 +713,11 @@ msgstr "Typ dokumentu tożsamości" msgid "Identifier Types" msgstr "Rodzaje dowodu tożsamości" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -737,7 +725,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -745,19 +733,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Szczepienie" @@ -772,13 +756,13 @@ msgstr "Formularz szczepienia" msgid "Immunizations" msgstr "Szczepienia" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -786,7 +770,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -799,12 +783,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -836,11 +820,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Znane reakcje uczuleniowe Pacjenta pomocne w interpretacji reakcji na leki" @@ -848,11 +828,11 @@ msgstr "Znane reakcje uczuleniowe Pacjenta pomocne w interpretacji reakcji na le msgid "Known undesirable effects of the drug" msgstr "Znane niepożądane oddziaływanie leku" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Lokalizacja" @@ -860,11 +840,6 @@ msgstr "Lokalizacja" msgid "Male" msgstr "Męska" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -877,11 +852,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Telefon Komórkowy" @@ -902,11 +872,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Imię matki" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nazwisko" @@ -918,7 +888,7 @@ msgstr "Rdzenny Amerykanin" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Hawajczyk lub mieszkaniec Wysp Pacyfiku" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1006,7 +976,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "Identyfkator ID pacjenta" @@ -1018,33 +988,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Dodatkowe identyfikatory pacjenta" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Historia choroby pacjenta" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacjenci" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefon" @@ -1056,7 +1026,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Zdjęcie" @@ -1085,7 +1055,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Zlecający badanie" @@ -1093,7 +1063,7 @@ msgstr "Zlecający badanie" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1113,7 +1083,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1132,7 +1101,7 @@ msgstr "Istotne fakty" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Uwagi" @@ -1144,14 +1113,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1160,9 +1121,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1170,7 +1131,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1210,7 +1171,7 @@ msgstr "Wybierz typ uodpornienia.
Uodpornienie aktywne zakłada wprowadzeni msgid "Select a type of treatment." msgstr "Wybierz sposób leczenia" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1218,7 +1179,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1242,19 +1203,15 @@ msgstr "" msgid "Shock treatment" msgstr "Terapia szokowa" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Leczenie specyficzne" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Start" @@ -1305,7 +1262,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1313,15 +1270,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1338,7 +1295,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Tytuł" @@ -1381,12 +1338,12 @@ msgid "Treatments" msgstr "Terapie" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Data wypisania" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Data przyjęcia" @@ -1394,11 +1351,7 @@ msgstr "Data przyjęcia" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1411,11 +1364,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Ośrodek szczepień" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Ośrodki szczepień" @@ -1424,14 +1377,6 @@ msgstr "Ośrodki szczepień" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1481,14 +1426,6 @@ msgstr "rr-mm-dd" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/pt/LC_MESSAGES/senaite.core.po b/bika/health/locales/pt/LC_MESSAGES/senaite.core.po index 4da1b231..976a8b6e 100644 --- a/bika/health/locales/pt/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/pt/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (https://www.transifex.com/senaite/teams/87046/pt/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/pt/LC_MESSAGES/senaite.health.po b/bika/health/locales/pt/LC_MESSAGES/senaite.health.po index e633b3f6..48bea747 100644 --- a/bika/health/locales/pt/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/pt/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (https://www.transifex.com/senaite/teams/87046/pt/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/pt_BR/LC_MESSAGES/senaite.core.po b/bika/health/locales/pt_BR/LC_MESSAGES/senaite.core.po index c352d211..a8f28189 100644 --- a/bika/health/locales/pt_BR/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/pt_BR/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/senaite/teams/87046/pt_BR/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/pt_BR/LC_MESSAGES/senaite.health.po b/bika/health/locales/pt_BR/LC_MESSAGES/senaite.health.po index 48db0c49..92490164 100644 --- a/bika/health/locales/pt_BR/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/pt_BR/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/senaite/teams/87046/pt_BR/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Uma lista de subtipos de agentes etiológicos." -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "Uma lista de imunização administrada por pacientes." -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "Uma lista de pacientes tratados e drogas administradas." -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Uma lista de lugares visitador por pacientes." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Ativo" @@ -67,7 +67,7 @@ msgstr "Ativar tratamento" msgid "Add" msgstr "Adicionar" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Os sintomas adicionais não previstos nos códigos CID, podem ser inseridos aqui." -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Adicionar identificadores" @@ -96,27 +96,23 @@ msgstr "Agente etiológicos" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Idade" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Todos" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data de nascimento" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Data de nascimento estimada" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Lugar onde nasceu" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "Data de Nascimento" @@ -216,7 +212,7 @@ msgstr "Telefone de trabalho" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Salvar modificações" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Cidadania" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Estado civil" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "Definições de Referências" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "Coleto em risco" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Conservar tratamento" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "País" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "País e estado" @@ -356,7 +352,7 @@ msgstr "País e estado" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Data" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descrição" @@ -431,7 +427,7 @@ msgstr "Doença" msgid "Diseases" msgstr "Doenças" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Doutor" msgid "Doctor ID" msgstr "ID Doutor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Não sei" msgid "Dormant" msgstr "Inativo" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Drogas" @@ -490,7 +486,7 @@ msgstr "Drogas" msgid "Drug Prohibition" msgstr "Drogas proibidas" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "Explicação de drogas proibidas" @@ -527,12 +523,12 @@ msgstr "Efeitos colaterais de drogas" msgid "Drugs" msgstr "Drogas" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "EPI Número" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Endereço de e-mail" msgid "Empirical treatment" msgstr "Tratamento empíric" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Fim" @@ -563,7 +551,7 @@ msgstr "Fim" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etinia" @@ -571,7 +559,7 @@ msgstr "Etinia" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etinia ex: Asian, Africa, etc." @@ -583,21 +571,21 @@ msgstr "Expectante/Tratamento sintomático" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Característica" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Feminino" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nome Completo" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Sexo" @@ -654,35 +642,35 @@ msgstr "Áreas geográficas podem ser caracterizadas como tendo níveis alto, m msgid "Geographical distribution" msgstr "Distribuição geográfica" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Hispânicou ou latino" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "ICD Código" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Idenficar" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tipo de Recipiente" @@ -724,11 +712,11 @@ msgstr "Tipo de Recipiente" msgid "Identifier Types" msgstr "Tipo de identificador" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Imunização" @@ -771,13 +755,13 @@ msgstr "Formulário de Imunização" msgid "Immunizations" msgstr "Imunização" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "Alergias conhecidas do paciente para manter informações que podem ajudar na interpretação de reação a drogas" @@ -847,11 +827,11 @@ msgstr "Alergias conhecidas do paciente para manter informações que podem ajud msgid "Known undesirable effects of the drug" msgstr "Conhecidos os efeitos indesejáveis ​​da droga" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Localização" @@ -859,11 +839,6 @@ msgstr "Localização" msgid "Male" msgstr "Masculino" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Telefone Móvel" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Sobrenome" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nome" @@ -917,7 +887,7 @@ msgstr "Nativo americano" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Nativo do Havaí ou outras ilhas do Pacífico" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID Paciente" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificação adicional de paciente" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "Histórico médico do paciente" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacientes" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefone" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Foto" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "Referente primário" @@ -1092,7 +1062,7 @@ msgstr "Referente primário" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "Fatos relevantes" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Notas" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "Selecione um tipo de imunização.
Imunização activa envolve a i msgid "Select a type of treatment." msgstr "Escolher um tipo de tratamento" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "Tratamento de choque" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratamento específico" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Iniciar" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Título" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Tratamento" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Data do vencimento da viagem" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Data do início da viagem" @@ -1393,11 +1350,7 @@ msgstr "Data do início da viagem" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centro de vacinação" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centro de Vacina" @@ -1423,14 +1376,6 @@ msgstr "Centro de Vacina" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "dd-mm-yy" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ro_RO/LC_MESSAGES/senaite.core.po b/bika/health/locales/ro_RO/LC_MESSAGES/senaite.core.po index a2717a50..51a08ccc 100644 --- a/bika/health/locales/ro_RO/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ro_RO/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian (Romania) (https://www.transifex.com/senaite/teams/87046/ro_RO/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ro_RO/LC_MESSAGES/senaite.health.po b/bika/health/locales/ro_RO/LC_MESSAGES/senaite.health.po index d2b18c39..4f7398c9 100644 --- a/bika/health/locales/ro_RO/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ro_RO/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/senaite/teams/87046/ro_RO/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "O listă cu locurile vizitate de pacient." @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Activ" @@ -67,7 +67,7 @@ msgstr "Tratament activ" msgid "Add" msgstr "Adaugă" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -96,27 +96,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Vârstă" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Toate" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Data nașterii" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Data nașterii este estimată" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Locul nașterii" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -216,7 +212,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Cetățenie" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Statut civil" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Țară" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Țară și regiune" @@ -356,7 +352,7 @@ msgstr "Țară și regiune" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Dată" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Descriere" @@ -431,7 +427,7 @@ msgstr "Boală" msgid "Diseases" msgstr "Boli" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Doctor" msgid "Doctor ID" msgstr "ID doctor" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Necunoscut" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Medicament" @@ -490,7 +486,7 @@ msgstr "Medicament" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -527,12 +523,12 @@ msgstr "" msgid "Drugs" msgstr "Medicamente" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Adresă email" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -563,7 +551,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Etnicitate" @@ -571,7 +559,7 @@ msgstr "Etnicitate" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Etnicitate, de ex. asiatic, african etc." @@ -583,21 +571,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Fax" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Nume complet" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Sex" @@ -654,35 +642,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Identificator" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Tip identificator" @@ -724,11 +712,11 @@ msgstr "Tip identificator" msgid "Identifier Types" msgstr "Tipuri identificatori" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Imunizare" @@ -771,13 +755,13 @@ msgstr "Formă imunizare" msgid "Immunizations" msgstr "Imunizări" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -847,11 +827,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Locație" @@ -859,11 +839,6 @@ msgstr "Locație" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Telefon mobil" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Nume" @@ -917,7 +887,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID pacient" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "Identificatori adiționali pacient" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "Pacienți" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "Telefon" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "Poză" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1092,7 +1062,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "Remarci" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "Alege un tip de imunizare.
Imunizarea activă presupune introducere msgid "Select a type of treatment." msgstr "Alege un tip de tratament." -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "Tratament specific" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "Start" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Titlu" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "Tratamente" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "Sfârșitul călătoriei" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "Începutul călătoriei" @@ -1393,11 +1350,7 @@ msgstr "Începutul călătoriei" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "Centru vaccinare" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "Centre vaccinare" @@ -1423,14 +1376,6 @@ msgstr "Centre vaccinare" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "aa-ll-zz" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ru/LC_MESSAGES/senaite.core.po b/bika/health/locales/ru/LC_MESSAGES/senaite.core.po index 1f27ba76..42e10a53 100644 --- a/bika/health/locales/ru/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ru/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (https://www.transifex.com/senaite/teams/87046/ru/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ru/LC_MESSAGES/senaite.health.po b/bika/health/locales/ru/LC_MESSAGES/senaite.health.po index 7fb8bb70..af7162ed 100644 --- a/bika/health/locales/ru/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ru/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Russian (https://www.transifex.com/senaite/teams/87046/ru/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "Список подтипов этиологических агентов" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "Список мест, посещенных пациентом" @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "Активный" @@ -67,7 +67,7 @@ msgstr "Текущее лечение" msgid "Add" msgstr "Добавить" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "Дополнительные симптомы, не описанные ICD кодами, могут быть указаны здесь" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "Дополнительные идентификаторы" @@ -96,27 +96,23 @@ msgstr "Этиологические агенты" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "Возраст" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "Все" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "Дата рождения" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "Предполагаемая дата рождения" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "Место рождения" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "ДатаРождения" @@ -216,7 +212,7 @@ msgstr "Рабочий телефон" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "Изменения сохранены" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "Гражданство" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "Гражданское состояние" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "Консервативное лечение" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "Страна" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "Страна и штат" @@ -356,7 +352,7 @@ msgstr "Страна и штат" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "Дата" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "Описание" @@ -431,7 +427,7 @@ msgstr "Заболевание" msgid "Diseases" msgstr "Заболевания" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "Врач" msgid "Doctor ID" msgstr "ID Врача" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "Не известно" msgid "Dormant" msgstr "Отложенный" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "Медикамент" @@ -490,7 +486,7 @@ msgstr "Медикамент" msgid "Drug Prohibition" msgstr "Запрет на наркотики" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -527,12 +523,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "EPI Номер" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Адрес электронной почты" msgid "Empirical treatment" msgstr "Эмпирические лечение" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "Конец" @@ -563,7 +551,7 @@ msgstr "Конец" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "Этнос" @@ -571,7 +559,7 @@ msgstr "Этнос" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "Этническая принадлежность (напр. Азиат, Африканец и т.п.)" @@ -583,21 +571,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "Факс" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "Особенность" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "Женский" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "Полное имя" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "Пол" @@ -654,35 +642,35 @@ msgstr "Географические территории могут быть о msgid "Geographical distribution" msgstr "Географическое распределение" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "Испанец или Латино" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "ICD Код" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "Идентификатор" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "Тип идентификатора" @@ -724,11 +712,11 @@ msgstr "Тип идентификатора" msgid "Identifier Types" msgstr "Типы удостоверений личности" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "Иммунизация" @@ -771,13 +755,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -847,11 +827,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Местонахождение" @@ -859,11 +839,6 @@ msgstr "Местонахождение" msgid "Male" msgstr "Мужской" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "Мобильный телефон" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "Имя матери" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "Имя" @@ -917,7 +887,7 @@ msgstr "Коренной американец" msgid "Native Hawaiian or Other Pacific Islander" msgstr "Коренной Гаваец или житель других тихоокеанских островов" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "ID Пациента" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1092,7 +1062,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "Наименование" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1393,11 +1350,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1423,14 +1376,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "dd-mm-yyyy" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/senaite.core.pot b/bika/health/locales/senaite.core.pot index a3ce4673..6c353494 100644 --- a/bika/health/locales/senaite.core.pot +++ b/bika/health/locales/senaite.core.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,20 +18,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -74,31 +74,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -130,19 +126,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -164,7 +160,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -213,17 +209,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -237,16 +233,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -255,7 +251,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -267,7 +263,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -275,15 +271,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -291,13 +287,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -310,7 +306,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -326,7 +322,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -360,7 +356,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -369,7 +365,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -401,12 +397,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -420,15 +416,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -436,7 +424,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -444,7 +432,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -456,21 +444,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -482,11 +470,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -505,8 +493,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -519,31 +507,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -551,7 +539,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -563,11 +551,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -575,11 +563,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -587,7 +575,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -595,19 +583,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -621,11 +605,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -633,7 +617,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -645,11 +629,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -669,11 +653,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -681,11 +661,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -693,16 +673,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -711,11 +681,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -789,40 +759,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -839,11 +809,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -865,21 +835,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -891,7 +853,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -899,7 +861,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -919,19 +881,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -965,20 +923,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1019,16 +977,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1040,11 +998,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1052,26 +1010,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/senaite.health.pot b/bika/health/locales/senaite.health.pot index 67c7fe75..6c0ebf37 100644 --- a/bika/health/locales/senaite.health.pot +++ b/bika/health/locales/senaite.health.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,15 +26,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -44,7 +44,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -92,27 +92,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -128,7 +124,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -176,19 +172,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -212,7 +208,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -264,11 +260,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -293,17 +289,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -320,7 +316,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -332,7 +328,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -340,11 +336,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -352,7 +348,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -403,13 +399,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -427,7 +423,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -443,7 +439,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -477,7 +473,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -486,7 +482,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -523,12 +519,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -542,15 +538,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -559,7 +547,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -567,7 +555,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -579,21 +567,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -605,11 +593,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -636,8 +624,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -650,35 +638,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -690,7 +678,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -707,11 +695,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -720,11 +708,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -732,7 +720,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -740,19 +728,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -767,13 +751,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -781,7 +765,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -794,12 +778,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -831,11 +815,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -843,11 +823,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -855,11 +835,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -872,11 +847,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -897,11 +867,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -913,7 +883,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1001,7 +971,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1013,33 +983,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1051,7 +1021,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1080,7 +1050,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1088,7 +1058,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1108,7 +1078,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1127,7 +1096,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1139,14 +1108,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1155,9 +1116,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1165,7 +1126,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1205,7 +1166,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1213,7 +1174,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1237,19 +1198,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1300,7 +1257,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1308,15 +1265,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1333,7 +1290,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1376,12 +1333,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1389,11 +1346,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1406,11 +1359,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1419,14 +1372,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1476,14 +1421,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/sv/LC_MESSAGES/senaite.core.po b/bika/health/locales/sv/LC_MESSAGES/senaite.core.po index b8afd8d7..7656a67d 100644 --- a/bika/health/locales/sv/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/sv/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (https://www.transifex.com/senaite/teams/87046/sv/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/sv/LC_MESSAGES/senaite.health.po b/bika/health/locales/sv/LC_MESSAGES/senaite.health.po index d1374bea..27b7d399 100644 --- a/bika/health/locales/sv/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/sv/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (https://www.transifex.com/senaite/teams/87046/sv/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ta/LC_MESSAGES/senaite.core.po b/bika/health/locales/ta/LC_MESSAGES/senaite.core.po index 1bcc5613..ba7a797e 100644 --- a/bika/health/locales/ta/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ta/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil (https://www.transifex.com/senaite/teams/87046/ta/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ta/LC_MESSAGES/senaite.health.po b/bika/health/locales/ta/LC_MESSAGES/senaite.health.po index 44f94802..83df43b1 100644 --- a/bika/health/locales/ta/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ta/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil (https://www.transifex.com/senaite/teams/87046/ta/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/te_IN/LC_MESSAGES/senaite.core.po b/bika/health/locales/te_IN/LC_MESSAGES/senaite.core.po index 8ba57d49..6a6ca13d 100644 --- a/bika/health/locales/te_IN/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/te_IN/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (India) (https://www.transifex.com/senaite/teams/87046/te_IN/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/te_IN/LC_MESSAGES/senaite.health.po b/bika/health/locales/te_IN/LC_MESSAGES/senaite.health.po index 72108fb7..dfee3504 100644 --- a/bika/health/locales/te_IN/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/te_IN/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (India) (https://www.transifex.com/senaite/teams/87046/te_IN/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/tr_TR/LC_MESSAGES/senaite.core.po b/bika/health/locales/tr_TR/LC_MESSAGES/senaite.core.po index 1fce112a..4292c878 100644 --- a/bika/health/locales/tr_TR/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/tr_TR/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/senaite/teams/87046/tr_TR/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/tr_TR/LC_MESSAGES/senaite.health.po b/bika/health/locales/tr_TR/LC_MESSAGES/senaite.health.po index 22afaaef..18e65717 100644 --- a/bika/health/locales/tr_TR/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/tr_TR/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/senaite/teams/87046/tr_TR/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/uk_UA/LC_MESSAGES/senaite.core.po b/bika/health/locales/uk_UA/LC_MESSAGES/senaite.core.po index 12301601..b97b01d0 100644 --- a/bika/health/locales/uk_UA/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/uk_UA/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/senaite/teams/87046/uk_UA/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/uk_UA/LC_MESSAGES/senaite.health.po b/bika/health/locales/uk_UA/LC_MESSAGES/senaite.health.po index ea2251a6..1648c9f2 100644 --- a/bika/health/locales/uk_UA/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/uk_UA/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/senaite/teams/87046/uk_UA/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/ur/LC_MESSAGES/senaite.core.po b/bika/health/locales/ur/LC_MESSAGES/senaite.core.po index d7258ed0..d9ea21b2 100644 --- a/bika/health/locales/ur/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/ur/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (https://www.transifex.com/senaite/teams/87046/ur/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/ur/LC_MESSAGES/senaite.health.po b/bika/health/locales/ur/LC_MESSAGES/senaite.health.po index b8b4068e..b6de356a 100644 --- a/bika/health/locales/ur/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/ur/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (https://www.transifex.com/senaite/teams/87046/ur/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/vi/LC_MESSAGES/senaite.core.po b/bika/health/locales/vi/LC_MESSAGES/senaite.core.po index 5127cffa..3554774d 100644 --- a/bika/health/locales/vi/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/vi/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (https://www.transifex.com/senaite/teams/87046/vi/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/vi/LC_MESSAGES/senaite.health.po b/bika/health/locales/vi/LC_MESSAGES/senaite.health.po index fb1db4b2..95934352 100644 --- a/bika/health/locales/vi/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/vi/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (https://www.transifex.com/senaite/teams/87046/vi/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/zh/LC_MESSAGES/senaite.core.po b/bika/health/locales/zh/LC_MESSAGES/senaite.core.po index 3d842e52..04153bee 100644 --- a/bika/health/locales/zh/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/zh/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (https://www.transifex.com/senaite/teams/87046/zh/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/zh/LC_MESSAGES/senaite.health.po b/bika/health/locales/zh/LC_MESSAGES/senaite.health.po index a0936f82..35377f60 100644 --- a/bika/health/locales/zh/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/zh/LC_MESSAGES/senaite.health.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (https://www.transifex.com/senaite/teams/87046/zh/)\n" @@ -28,15 +28,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -46,7 +46,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -94,27 +94,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -130,7 +126,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -178,19 +174,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -214,7 +210,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -266,11 +262,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -295,17 +291,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -322,7 +318,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -342,11 +338,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -354,7 +350,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -405,13 +401,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -429,7 +425,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -445,7 +441,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -479,7 +475,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -488,7 +484,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -525,12 +521,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -544,15 +540,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -561,7 +549,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -569,7 +557,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -581,21 +569,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -607,11 +595,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -638,8 +626,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -652,35 +640,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -692,7 +680,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -709,11 +697,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -722,11 +710,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -734,7 +722,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -742,19 +730,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -769,13 +753,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -783,7 +767,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -796,12 +780,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -833,11 +817,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -845,11 +825,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -857,11 +837,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -874,11 +849,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -899,11 +869,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -915,7 +885,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1003,7 +973,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1015,33 +985,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" @@ -1053,7 +1023,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1082,7 +1052,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1090,7 +1060,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1110,7 +1080,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1129,7 +1098,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" @@ -1141,14 +1110,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1157,9 +1118,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1167,7 +1128,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1207,7 +1168,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1215,7 +1176,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1239,19 +1200,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1302,7 +1259,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1310,15 +1267,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1335,7 +1292,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1378,12 +1335,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1391,11 +1348,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1408,11 +1361,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1421,14 +1374,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1477,14 +1422,6 @@ msgstr "" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po index 4e9e86f0..c6d575d7 100644 --- a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.core.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Zhuo Song, 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/senaite/teams/87046/zh_CN/)\n" @@ -22,20 +22,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "病原体亚型列表。" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "给予患者的免疫接种清单。" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "患者治疗和药物清单。" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "患者去过的地方的清单。" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "活跃的" @@ -54,7 +54,7 @@ msgstr "积极治疗" msgid "Add" msgstr "添加" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "附加ID" @@ -62,7 +62,7 @@ msgstr "附加ID" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "可以在此处输入ICD代码未涵盖的其他症状。" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "附加标识符" @@ -78,31 +78,27 @@ msgstr "病原体" msgid "Aetiologic agent" msgstr "病原体" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "年龄" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "当提交的分析结果超出紧急程度时,通过电子邮件提醒实验室经理" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "所有的" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "允许将结果分发给患者" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "允许将结果分发给该患者" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "匿名" @@ -134,19 +130,19 @@ msgstr "批次编码" msgid "Batches" msgstr "批次" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "生日" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "估计的生日" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "出生地" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "生日" @@ -168,7 +164,7 @@ msgstr "办公电话" msgid "CPID" msgstr "身份识别码" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "病案" @@ -217,17 +213,17 @@ msgstr "更改已保存。" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "检查患者是否可以经历不同的压力水平(无,轻度,中度,重度)症状" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "国籍" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "公民身份" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "客户" @@ -241,16 +237,16 @@ msgstr "客户编号" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "客户PID" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "客户病人ID" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "客户患者ID必须唯一" @@ -259,7 +255,7 @@ msgid "Clients" msgstr "客户" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "编码" @@ -271,7 +267,7 @@ msgstr "集体处于危险之中" msgid "Company Name" msgstr "公司名" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "同意短信" @@ -279,15 +275,15 @@ msgstr "同意短信" msgid "Conservative treatment" msgstr "保守治疗" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "国家" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "国家和省市" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "日期" @@ -295,13 +291,13 @@ msgstr "日期" msgid "Default" msgstr "默认" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "患者的默认发布偏好" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "描述" @@ -314,7 +310,7 @@ msgstr "疾病" msgid "Diseases" msgstr "疾病" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "区" @@ -330,7 +326,7 @@ msgstr "医生" msgid "Doctor ID" msgstr "医生编号" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "在某些情况下必须填写医生字段" @@ -364,7 +360,7 @@ msgstr "不知道" msgid "Dormant" msgstr "休眠的" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "药物" @@ -373,7 +369,7 @@ msgstr "药物" msgid "Drug Prohibition" msgstr "用药禁忌" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "用药禁忌说明" @@ -405,12 +401,12 @@ msgstr "药物副作用" msgid "Drugs" msgstr "药物" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "EPI编号" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -424,15 +420,7 @@ msgstr "Email地址" msgid "Empirical treatment" msgstr "实证治疗" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "启用Bika的分析请求表。" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "启用紧急级别警报" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "结束" @@ -440,7 +428,7 @@ msgstr "结束" msgid "Ethnicities" msgstr "种族" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "种族" @@ -448,7 +436,7 @@ msgstr "种族" msgid "Ethnicity Name" msgstr "种族名称" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "种族,例如:亚洲,非洲等" @@ -460,21 +448,21 @@ msgstr "预期/对症治疗" msgid "Failed ajax call: %s" msgstr "Ajax调用失败:%s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "父亲的名字" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "传真" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "特征" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "英尺/英寸" @@ -486,11 +474,11 @@ msgstr "女性" msgid "File" msgstr "文件" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "归档结果的附件,例如,显微镜照片,如果启用此选项,将包含在给患者的电子邮件中" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -509,8 +497,8 @@ msgstr "全名" msgid "Fullname" msgstr "全名" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "性别" @@ -523,31 +511,31 @@ msgstr "地理区域的特征是具有高,中或低水平的感染。" msgid "Geographical distribution" msgstr "地域分布" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "担保人编码" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "担保人的名" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "担保人电话(办公)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "担保人电话(家庭电话)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "担保人电话(移动电话)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "担保人的姓" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "担保人的邮政地址" @@ -555,7 +543,7 @@ msgstr "担保人的邮政地址" msgid "Hispanic or Latino" msgstr "西班牙裔或拉丁裔" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "历史结果" @@ -567,11 +555,11 @@ msgstr "空腹小时" msgid "ICD Code" msgstr "iCD代码" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "识别码" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "标识符类型" @@ -579,11 +567,11 @@ msgstr "标识符类型" msgid "Identifier Types" msgstr "标识符类型" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "如果选中,结果报告也将自动发送给患者。" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "如果选中,结果报告也将自动发送给患者。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -591,7 +579,7 @@ msgstr "如果选中,结果报告也将自动发送给患者。 可以在“ msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "如果选中,结果报告也将自动发送给患者。 可以在患者的“发布偏好”选项卡上覆盖此设置。" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "如果选中,则设置将从客户端继承,因此客户端中也会对此设置进行进一步的更改。" @@ -599,19 +587,15 @@ msgstr "如果选中,则设置将从客户端继承,因此客户端中也会 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "如果选中,则从Bika Setup继承用于向患者分发结果报告的设置,因此也会在Bika Setup中对此设置进行进一步的更改。" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "如果启用,将自动显示一个电子邮件表单弹出窗口,用于在加载“分析请求”视图时提醒客户端超出了紧急级别" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "如果选中,发票将发送到保险公司。 在这种情况下,保险号将是强制性的。" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "如果选择,则客户患者ID将被强制为唯一" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "免疫" @@ -625,11 +609,11 @@ msgstr "免疫形式" msgid "Immunizations" msgstr "免疫" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "不活跃" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "英寸" @@ -637,7 +621,7 @@ msgstr "英寸" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "'${title}'中的数据格式不正确,应为YYYY-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "继承默认设置" @@ -649,11 +633,11 @@ msgstr "继承患者结果分发的默认设置" msgid "Insurance Companies" msgstr "保险公司" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "保险公司" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "保险号码" @@ -673,11 +657,7 @@ msgstr "发票" msgid "Irregular" msgstr "不规则" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "它启用了辅助分析请求表。 该请求具有一些特征,如允许您同时注册多个分析请求。 如果您应该同时注册大量分析请求,这将很有用。" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息" @@ -685,11 +665,11 @@ msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息 msgid "Known undesirable effects of the drug" msgstr "药物的已知不良作用" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "磅" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "地点" @@ -697,16 +677,6 @@ msgstr "地点" msgid "Male" msgstr "男性" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "紧急最大值" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "紧急最小值" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "手机" @@ -715,11 +685,11 @@ msgstr "手机" msgid "MobilePhone" msgstr "移动电话" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "母亲的名字" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "名称" @@ -793,40 +763,40 @@ msgstr "患者档案" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "患者编号" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "患者附加标识符" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "患者身高" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "患者腰围" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "患者体重" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "患者过去的病史。" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "患者" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "电话" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "照片" @@ -843,11 +813,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "预防/预防治疗" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "主要推荐人" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "省" @@ -869,21 +839,13 @@ msgstr "相关事实" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "注释" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "超出紧急程度的结果" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "导致紧急范围" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "允许结果附件" @@ -895,7 +857,7 @@ msgstr "选择一种免疫。 主动免疫需要将异物引入人体,这会 msgid "Select a type of treatment." msgstr "选择一种治疗方式。" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -903,7 +865,7 @@ msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在患者的“发布偏好”标签上覆盖此设置。" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "将发票发送给保险公司。" @@ -923,19 +885,15 @@ msgstr "允许的严重级别" msgid "Shock treatment" msgstr "休克治疗" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "创建病案时,Doctor字段是否为必填字段?" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "出现紧急情况时显示客户端电子邮件弹出窗口" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "具体待遇" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "开始" @@ -969,20 +927,20 @@ msgstr "病征" msgid "Symptoms or the like for which the drug is suitable" msgstr "药物适合的症状等" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "合同涵盖当前患者的人员的ID号(保险号)。" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "病人和担保人是相同的。" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "病人是保证人。" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "标题" @@ -1023,16 +981,16 @@ msgid "Treatments" msgstr "治疗方法" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "行程结束日期" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "行程开始日期" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "使用“ /”符号允许多单位提交" @@ -1044,11 +1002,11 @@ msgstr "用户名" msgid "VAT" msgstr "加值税" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "疫苗接种中心" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "疫苗接种中心" @@ -1056,26 +1014,10 @@ msgstr "疫苗接种中心" msgid "Validation failed: '${value}' is not unique" msgstr "验证失败:'${value}' 不是唯一的" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "验证失败:紧急最大值必须大于紧急最小值" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "验证失败:紧急最小值必须为数字" - #: bika/health/config.py:38 msgid "White" msgstr "白色" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "紧急最大值" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "紧急最小值" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "保存" diff --git a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po index 41bf6027..cc7f06e3 100644 --- a/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/zh_CN/LC_MESSAGES/senaite.health.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Zhuo Song, 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/senaite/teams/87046/zh_CN/)\n" @@ -31,15 +31,15 @@ msgstr "-" msgid "A list of aetiologic agent subtypes." msgstr "病原体亚型列表。" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "给予患者的免疫接种清单。" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "患者治疗和药物清单。" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "患者去过的地方的清单。" @@ -49,7 +49,7 @@ msgid "Activate" msgstr "启用" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "活跃的" @@ -68,7 +68,7 @@ msgstr "积极治疗" msgid "Add" msgstr "添加" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "附加ID" @@ -76,7 +76,7 @@ msgstr "附加ID" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "可以在此处输入ICD代码未涵盖的其他症状。" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "附加标识符" @@ -97,27 +97,23 @@ msgstr "病原体" msgid "Aetiologic agent" msgstr "病原体" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "年龄" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "当提交的分析结果超出紧急程度时,通过电子邮件提醒实验室经理" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "所有的" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "允许将结果分发给患者" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "允许将结果分发给该患者" @@ -133,7 +129,7 @@ msgstr "分析报告" msgid "Analysis results relate only to the samples tested." msgstr "仅与测试样品有关的分析结果。" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "匿名" @@ -181,19 +177,19 @@ msgstr "批次标签" msgid "Batches" msgstr "批次" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "生日" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "估计的生日" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "出生地" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "生日" @@ -217,7 +213,7 @@ msgstr "办公电话" msgid "CPID" msgstr "身份识别码" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "病案" @@ -269,11 +265,11 @@ msgstr "更改已保存。" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "检查患者是否可以经历不同的压力水平(无,轻度,中度,重度)症状" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "国籍" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "公民身份" @@ -298,17 +294,17 @@ msgstr "客户订单号" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "客户PID" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "客户病人ID" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "客户患者ID必须唯一" @@ -325,7 +321,7 @@ msgid "Clients" msgstr "客户" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "编码" @@ -337,7 +333,7 @@ msgstr "集体处于危险之中" msgid "Company Name" msgstr "公司名" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "同意短信" @@ -345,11 +341,11 @@ msgstr "同意短信" msgid "Conservative treatment" msgstr "保守治疗" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "国家" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "国家和省市" @@ -357,7 +353,7 @@ msgstr "国家和省市" msgid "Custom Report Options" msgstr "自定义报告选项" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "日期" @@ -408,13 +404,13 @@ msgstr "停用" msgid "Default" msgstr "默认" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "患者的默认发布偏好" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "描述" @@ -432,7 +428,7 @@ msgstr "疾病" msgid "Diseases" msgstr "疾病" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "区" @@ -448,7 +444,7 @@ msgstr "医生" msgid "Doctor ID" msgstr "医生编号" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "在某些情况下必须填写医生字段" @@ -482,7 +478,7 @@ msgstr "不知道" msgid "Dormant" msgstr "休眠的" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "药物" @@ -491,7 +487,7 @@ msgstr "药物" msgid "Drug Prohibition" msgstr "用药禁忌" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "用药禁忌说明" @@ -528,12 +524,12 @@ msgstr "药物副作用" msgid "Drugs" msgstr "药物" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "EPI编号" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -547,15 +543,7 @@ msgstr "Email地址" msgid "Empirical treatment" msgstr "实证治疗" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "启用Bika的分析请求表。" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "启用紧急级别警报" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "结束" @@ -564,7 +552,7 @@ msgstr "结束" msgid "Ethnicities" msgstr "种族" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "种族" @@ -572,7 +560,7 @@ msgstr "种族" msgid "Ethnicity Name" msgstr "种族名称" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "种族,例如:亚洲,非洲等" @@ -584,21 +572,21 @@ msgstr "预期/对症治疗" msgid "Failed ajax call: %s" msgstr "Ajax调用失败:%s" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "父亲的名字" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "传真" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "特征" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "英尺/英寸" @@ -610,11 +598,11 @@ msgstr "女性" msgid "File" msgstr "文件" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "归档结果的附件,例如,显微镜照片,如果启用此选项,将包含在给患者的电子邮件中" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "归档结果的附件,例如,如果启用此选项,则将在发送给患者的电子邮件中包含显微镜照片。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -641,8 +629,8 @@ msgstr "全名" msgid "Fullname" msgstr "全名" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "性别" @@ -655,35 +643,35 @@ msgstr "地理区域的特征是具有高,中或低水平的感染。" msgid "Geographical distribution" msgstr "地域分布" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "担保人编码" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "担保人的名" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "担保人电话(办公)" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "担保人电话(家庭电话)" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "担保人电话(移动电话)" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "担保人的姓" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "担保人的邮政地址" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "SENAITE的医疗保健扩展" @@ -695,7 +683,7 @@ msgstr "高度" msgid "Hispanic or Latino" msgstr "西班牙裔或拉丁裔" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "历史结果" @@ -712,11 +700,11 @@ msgstr "子宫切除术" msgid "ICD Code" msgstr "iCD代码" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "识别码" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "标识符类型" @@ -725,11 +713,11 @@ msgstr "标识符类型" msgid "Identifier Types" msgstr "标识符类型" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "如果选中,结果报告也将自动发送给患者。" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "如果选中,结果报告也将自动发送给患者。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -737,7 +725,7 @@ msgstr "如果选中,结果报告也将自动发送给患者。 可以在“ msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "如果选中,结果报告也将自动发送给患者。 可以在患者的“发布偏好”选项卡上覆盖此设置。" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "如果选中,则设置将从客户端继承,因此客户端中也会对此设置进行进一步的更改。" @@ -745,19 +733,15 @@ msgstr "如果选中,则设置将从客户端继承,因此客户端中也会 msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "如果选中,则从Bika Setup继承用于向患者分发结果报告的设置,因此也会在Bika Setup中对此设置进行进一步的更改。" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "如果启用,将自动显示一个电子邮件表单弹出窗口,用于在加载“分析请求”视图时提醒客户端超出了紧急级别" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "如果选中,发票将发送到保险公司。 在这种情况下,保险号将是强制性的。" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "如果选择,则客户患者ID将被强制为唯一" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "免疫" @@ -772,13 +756,13 @@ msgstr "免疫形式" msgid "Immunizations" msgstr "免疫" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "不活跃" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "英寸" @@ -786,7 +770,7 @@ msgstr "英寸" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "'${title}'中的数据格式不正确,应为YYYY-MM-DD" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "继承默认设置" @@ -799,12 +783,12 @@ msgstr "继承患者结果分发的默认设置" msgid "Insurance Companies" msgstr "保险公司" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "保险公司" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "保险号码" @@ -836,11 +820,7 @@ msgstr "发票" msgid "Irregular" msgstr "不规则" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "它启用了辅助分析请求表。 该请求具有一些特征,如允许您同时注册多个分析请求。 如果您应该同时注册大量分析请求,这将很有用。" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息" @@ -848,11 +828,11 @@ msgstr "已知的患者过敏反应可保留有助于药物反应解释的信息 msgid "Known undesirable effects of the drug" msgstr "药物的已知不良作用" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "磅" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "地点" @@ -860,11 +840,6 @@ msgstr "地点" msgid "Male" msgstr "男性" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "紧急最大值" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "月经周期类型" @@ -877,11 +852,6 @@ msgstr "$ {accreditation_body}实验室认证时间表中包含的方法。 分 msgid "Mild" msgstr "温和" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "紧急最小值" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "手机" @@ -902,11 +872,11 @@ msgstr "月" msgid "Months" msgstr "月数" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "母亲的名字" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "名称" @@ -918,7 +888,7 @@ msgstr "美洲原住民" msgid "Native Hawaiian or Other Pacific Islander" msgstr "夏威夷原住民或其他太平洋岛民" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "找不到历史结果" @@ -1006,7 +976,7 @@ msgstr "患者档案" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "患者编号" @@ -1018,33 +988,33 @@ msgstr "患者识别码" msgid "Patient Information" msgstr "患者信息" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "患者附加标识符" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "患者身高" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "患者腰围" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "患者体重" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "患者过去的病史。" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "患者" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "电话" @@ -1056,7 +1026,7 @@ msgstr "电话(家庭)" msgid "Phone (mobile)" msgstr "电话(手机)" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "照片" @@ -1085,7 +1055,7 @@ msgid "Price" msgstr "价格" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "主要推荐人" @@ -1093,7 +1063,7 @@ msgstr "主要推荐人" msgid "Print date:" msgstr "印刷日期:" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "省" @@ -1113,7 +1083,6 @@ msgstr "发布于" msgid "QC Results" msgstr "质检结果" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "范围" @@ -1132,7 +1101,7 @@ msgstr "相关事实" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "注释" @@ -1144,14 +1113,6 @@ msgstr "负责人" msgid "Result" msgstr "结果" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "超出紧急程度的结果" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "导致紧急范围" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "结果超出客户指定范围。" @@ -1160,9 +1121,9 @@ msgstr "结果超出客户指定范围。" msgid "Results" msgstr "结果" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "允许结果附件" @@ -1170,7 +1131,7 @@ msgstr "允许结果附件" msgid "Results interpretation" msgstr "结果解释" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "SENAITE健康" @@ -1210,7 +1171,7 @@ msgstr "选择一种免疫。 主动免疫需要将异物引入人体,这会 msgid "Select a type of treatment." msgstr "选择一种治疗方式。" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在“客户”视图的“患者发布偏好”选项卡上或“患者”的“发布偏好”选项卡上覆盖此设置。" @@ -1218,7 +1179,7 @@ msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "选择用于将结果报告发送给患者的首选渠道。 可以在患者的“发布偏好”标签上覆盖此设置。" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "将发票发送给保险公司。" @@ -1242,19 +1203,15 @@ msgstr "允许的严重级别" msgid "Shock treatment" msgstr "休克治疗" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "创建病案时,Doctor字段是否为必填字段?" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "出现紧急情况时显示客户端电子邮件弹出窗口" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "具体待遇" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "开始" @@ -1305,7 +1262,7 @@ msgstr "综合症" msgid "Taxes" msgstr "税收" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "测试" @@ -1313,15 +1270,15 @@ msgstr "测试" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "测试结果的置信度为$ {lab_confidence}%" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "合同涵盖当前患者的人员的ID号(保险号)。" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "病人和担保人是相同的。" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "病人是保证人。" @@ -1338,7 +1295,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "未经$ {name_lab}的书面批准,除非完整,否则不得复制本文档。" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "标题" @@ -1381,12 +1338,12 @@ msgid "Treatments" msgstr "治疗方法" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "行程结束日期" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "行程开始日期" @@ -1394,11 +1351,7 @@ msgstr "行程开始日期" msgid "Unit" msgstr "单元" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "单位" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "使用“ /”符号允许多单位提交" @@ -1411,11 +1364,11 @@ msgstr "用户名" msgid "VAT" msgstr "加值税" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "疫苗接种中心" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "疫苗接种中心" @@ -1424,14 +1377,6 @@ msgstr "疫苗接种中心" msgid "Validation failed: '${value}' is not unique" msgstr "验证失败:'${value}' 不是唯一的" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "验证失败:紧急最大值必须大于紧急最小值" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "验证失败:紧急最小值必须为数字" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "经核实" @@ -1481,14 +1426,6 @@ msgstr "短时间格式时间选择器" msgid "days" msgstr "日" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "紧急最大值" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "紧急最小值" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "月" diff --git a/bika/health/locales/zh_TW/LC_MESSAGES/senaite.core.po b/bika/health/locales/zh_TW/LC_MESSAGES/senaite.core.po index 83c5df81..62e43ace 100644 --- a/bika/health/locales/zh_TW/LC_MESSAGES/senaite.core.po +++ b/bika/health/locales/zh_TW/LC_MESSAGES/senaite.core.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/senaite/teams/87046/zh_TW/)\n" @@ -20,20 +20,20 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "Add" msgstr "" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -76,31 +76,27 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -132,19 +128,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -166,7 +162,7 @@ msgstr "" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -215,17 +211,17 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" #: bika/health/browser/insurancecompany/invoicefolder.py:56 #: bika/health/content/doctor.py:56 -#: bika/health/content/patient.py:71 +#: bika/health/content/patient.py:69 msgid "Client" msgstr "" @@ -239,16 +235,16 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -257,7 +253,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -269,7 +265,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -277,15 +273,15 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "" @@ -293,13 +289,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "" @@ -312,7 +308,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -362,7 +358,7 @@ msgstr "" msgid "Dormant" msgstr "" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -371,7 +367,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -403,12 +399,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "" @@ -422,15 +418,7 @@ msgstr "" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -438,7 +426,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -446,7 +434,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -458,21 +446,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -484,11 +472,11 @@ msgstr "" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -507,8 +495,8 @@ msgstr "" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -521,31 +509,31 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" @@ -553,7 +541,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -565,11 +553,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -577,11 +565,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -589,7 +577,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -597,19 +585,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -623,11 +607,11 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -635,7 +619,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -647,11 +631,11 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -671,11 +655,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -683,11 +663,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "" @@ -695,16 +675,6 @@ msgstr "" msgid "Male" msgstr "" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "" @@ -713,11 +683,11 @@ msgstr "" msgid "MobilePhone" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "" @@ -791,40 +761,40 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -841,11 +811,11 @@ msgid "Preventive/Prophylactic treatment" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -867,21 +837,13 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -893,7 +855,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -901,7 +863,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -921,19 +883,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -967,20 +925,20 @@ msgstr "" msgid "Symptoms or the like for which the drug is suitable" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "" @@ -1021,16 +979,16 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1042,11 +1000,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 msgid "Vaccination Centers" msgstr "" @@ -1054,26 +1012,10 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/config.py:38 msgid "White" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/content/drug.py:82 msgid "preservation" msgstr "" diff --git a/bika/health/locales/zh_TW/LC_MESSAGES/senaite.health.po b/bika/health/locales/zh_TW/LC_MESSAGES/senaite.health.po index 1beef270..043b503c 100644 --- a/bika/health/locales/zh_TW/LC_MESSAGES/senaite.health.po +++ b/bika/health/locales/zh_TW/LC_MESSAGES/senaite.health.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-07 17:10+0000\n" +"POT-Creation-Date: 2020-04-09 19:30+0000\n" "PO-Revision-Date: 2018-10-14 15:05+0000\n" "Last-Translator: Jordi Puiggené , 2018\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/senaite/teams/87046/zh_TW/)\n" @@ -30,15 +30,15 @@ msgstr "" msgid "A list of aetiologic agent subtypes." msgstr "" -#: bika/health/content/patient.py:393 +#: bika/health/content/patient.py:384 msgid "A list of immunizations administered to the patient." msgstr "" -#: bika/health/content/patient.py:257 +#: bika/health/content/patient.py:248 msgid "A list of patient treatments and drugs administered." msgstr "" -#: bika/health/content/patient.py:456 +#: bika/health/content/patient.py:447 msgid "A list of places visited by the patient." msgstr "" @@ -48,7 +48,7 @@ msgid "Activate" msgstr "" #: bika/health/browser/doctors/folder_view.py:69 -#: bika/health/browser/patients/folder_view.py:107 +#: bika/health/browser/patients/folder_view.py:108 #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:61 msgid "Active" msgstr "活跃的" @@ -67,7 +67,7 @@ msgstr "" msgid "Add" msgstr "添加" -#: bika/health/browser/patients/folder_view.py:98 +#: bika/health/browser/patients/folder_view.py:99 msgid "Additional IDs" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Additional Symptoms not covered by ICD codes, can be entered here." msgstr "" -#: bika/health/content/patient.py:190 +#: bika/health/content/patient.py:181 msgid "Additional identifiers" msgstr "" @@ -96,27 +96,23 @@ msgstr "" msgid "Aetiologic agent" msgstr "" -#: bika/health/browser/patients/folder_view.py:82 -#: bika/health/content/patient.py:126 +#: bika/health/browser/patients/folder_view.py:83 +#: bika/health/content/patient.py:124 msgid "Age" msgstr "" -#: bika/health/content/bikasetup.py:41 -msgid "Alert labmanagers with an email when an analysis result exceeding a panic level is submitted" -msgstr "" - #: bika/health/browser/doctors/folder_view.py:95 #: bika/health/browser/patient/files.py:81 -#: bika/health/browser/patients/folder_view.py:119 +#: bika/health/browser/patients/folder_view.py:120 msgid "All" msgstr "所有的" -#: bika/health/content/bikasetup.py:83 +#: bika/health/content/bikasetup.py:63 #: bika/health/content/client.py:50 msgid "Allow results distribution to Patients" msgstr "" -#: bika/health/content/patient.py:646 +#: bika/health/content/patient.py:637 msgid "Allow results distribution to this patient" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Analysis results relate only to the samples tested." msgstr "" -#: bika/health/content/patient.py:628 +#: bika/health/content/patient.py:619 msgid "Anonymous" msgstr "" @@ -180,19 +176,19 @@ msgstr "" msgid "Batches" msgstr "" -#: bika/health/content/patient.py:136 +#: bika/health/content/patient.py:134 msgid "Birth date" msgstr "" -#: bika/health/content/patient.py:144 +#: bika/health/content/patient.py:142 msgid "Birth date is estimated" msgstr "" -#: bika/health/content/patient.py:536 +#: bika/health/content/patient.py:527 msgid "Birth place" msgstr "" -#: bika/health/browser/patients/folder_view.py:87 +#: bika/health/browser/patients/folder_view.py:88 msgid "BirthDate" msgstr "" @@ -216,7 +212,7 @@ msgstr "办公电话" msgid "CPID" msgstr "" -#: bika/health/content/analysisrequest.py:178 +#: bika/health/content/analysisrequest.py:168 msgid "Case" msgstr "" @@ -268,11 +264,11 @@ msgstr "" msgid "Check if patient can experience different stress levels (none, mild, moderate, severe) of the symptom" msgstr "" -#: bika/health/content/patient.py:569 +#: bika/health/content/patient.py:560 msgid "Citizenship" msgstr "" -#: bika/health/content/patient.py:590 +#: bika/health/content/patient.py:581 msgid "Civil status" msgstr "" @@ -297,17 +293,17 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:55 #: bika/health/browser/batchfolder.py:113 -#: bika/health/browser/patients/folder_view.py:72 +#: bika/health/browser/patients/folder_view.py:73 msgid "Client PID" msgstr "" -#: bika/health/content/analysisrequest.py:122 -#: bika/health/content/patient.py:621 +#: bika/health/content/analysisrequest.py:112 +#: bika/health/content/patient.py:612 #: bika/health/impress/reports/Default.pt:354 msgid "Client Patient ID" msgstr "" -#: bika/health/content/bikasetup.py:142 +#: bika/health/content/bikasetup.py:111 msgid "Client Patient ID must be unique" msgstr "" @@ -324,7 +320,7 @@ msgid "Clients" msgstr "" #: bika/health/content/batch.py:169 -#: bika/health/content/patient.py:463 +#: bika/health/content/patient.py:454 msgid "Code" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Company Name" msgstr "" -#: bika/health/content/patient.py:757 +#: bika/health/content/patient.py:748 msgid "Consent to SMS" msgstr "" @@ -344,11 +340,11 @@ msgstr "" msgid "Conservative treatment" msgstr "" -#: bika/health/content/patient.py:441 +#: bika/health/content/patient.py:432 msgid "Country" msgstr "国家" -#: bika/health/content/patient.py:165 +#: bika/health/content/patient.py:156 msgid "Country and state" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Custom Report Options" msgstr "" -#: bika/health/content/patient.py:378 +#: bika/health/content/patient.py:369 msgid "Date" msgstr "日期" @@ -407,13 +403,13 @@ msgstr "" msgid "Default" msgstr "" -#: bika/health/content/bikasetup.py:94 +#: bika/health/content/bikasetup.py:74 #: bika/health/content/client.py:60 msgid "Default publication preference for Patients" msgstr "" #: bika/health/content/batch.py:171 -#: bika/health/content/patient.py:203 +#: bika/health/content/patient.py:194 #: bika/health/controlpanel/bika_aetiologicagents.py:55 msgid "Description" msgstr "描述" @@ -431,7 +427,7 @@ msgstr "" msgid "Diseases" msgstr "" -#: bika/health/content/patient.py:83 +#: bika/health/content/patient.py:81 msgid "District" msgstr "" @@ -447,7 +443,7 @@ msgstr "" msgid "Doctor ID" msgstr "" -#: bika/health/content/bikasetup.py:132 +#: bika/health/content/bikasetup.py:101 msgid "Doctor field is mandatory in cases" msgstr "" @@ -481,7 +477,7 @@ msgstr "" msgid "Dormant" msgstr "不活动" -#: bika/health/content/patient.py:242 +#: bika/health/content/patient.py:233 #: bika/health/controlpanel/bika_drugs.py:58 msgid "Drug" msgstr "" @@ -490,7 +486,7 @@ msgstr "" msgid "Drug Prohibition" msgstr "" -#: bika/health/content/patient.py:309 +#: bika/health/content/patient.py:300 msgid "Drug Prohibition Explanation" msgstr "" @@ -527,12 +523,12 @@ msgstr "" msgid "Drugs" msgstr "" -#: bika/health/content/patient.py:375 +#: bika/health/content/patient.py:366 msgid "EPI Number" msgstr "" #: bika/health/controlpanel/bika_insurancecompanies.py:54 -#: bika/health/controlpanel/bika_vaccinationcenters.py:63 +#: bika/health/controlpanel/bika_vaccinationcenters.py:79 #: bika/health/obsolete/__init__.py:40 msgid "Email" msgstr "Email" @@ -546,15 +542,7 @@ msgstr "Email地址" msgid "Empirical treatment" msgstr "" -#: bika/health/content/bikasetup.py:121 -msgid "Enable Bika's analysis request form." -msgstr "" - -#: bika/health/content/bikasetup.py:40 -msgid "Enable panic levels alert" -msgstr "" - -#: bika/health/content/patient.py:244 +#: bika/health/content/patient.py:235 msgid "End" msgstr "" @@ -563,7 +551,7 @@ msgstr "" msgid "Ethnicities" msgstr "" -#: bika/health/content/patient.py:547 +#: bika/health/content/patient.py:538 msgid "Ethnicity" msgstr "" @@ -571,7 +559,7 @@ msgstr "" msgid "Ethnicity Name" msgstr "" -#: bika/health/content/patient.py:548 +#: bika/health/content/patient.py:539 msgid "Ethnicity eg. Asian, African, etc." msgstr "" @@ -583,21 +571,21 @@ msgstr "" msgid "Failed ajax call: %s" msgstr "" -#: bika/health/content/patient.py:583 +#: bika/health/content/patient.py:574 msgid "Fathers name" msgstr "" #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:56 #: bika/health/controlpanel/bika_insurancecompanies.py:58 -#: bika/health/controlpanel/bika_vaccinationcenters.py:67 +#: bika/health/controlpanel/bika_vaccinationcenters.py:87 msgid "Fax" msgstr "传真" -#: bika/health/content/patient.py:605 +#: bika/health/content/patient.py:596 msgid "Feature" msgstr "" -#: bika/health/content/bikasetup.py:57 +#: bika/health/content/bikasetup.py:37 msgid "Feet/inches" msgstr "" @@ -609,11 +597,11 @@ msgstr "女/雌" msgid "File" msgstr "" -#: bika/health/content/patient.py:656 +#: bika/health/content/patient.py:647 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patient if this option is enabled" msgstr "" -#: bika/health/content/bikasetup.py:108 +#: bika/health/content/bikasetup.py:88 msgid "File attachments to results, e.g. microscope photos, will be included in emails to patients if this option is enabled. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -640,8 +628,8 @@ msgstr "全名" msgid "Fullname" msgstr "" -#: bika/health/browser/patients/folder_view.py:77 -#: bika/health/content/patient.py:120 +#: bika/health/browser/patients/folder_view.py:78 +#: bika/health/content/patient.py:118 #: bika/health/controlpanel/bika_symptoms.py:63 msgid "Gender" msgstr "" @@ -654,35 +642,35 @@ msgstr "" msgid "Geographical distribution" msgstr "" -#: bika/health/content/patient.py:701 +#: bika/health/content/patient.py:692 msgid "Guarantor ID" msgstr "" -#: bika/health/content/patient.py:720 +#: bika/health/content/patient.py:711 msgid "Guarantor's First Name" msgstr "" -#: bika/health/content/patient.py:736 +#: bika/health/content/patient.py:727 msgid "Guarantor's Phone (business)" msgstr "" -#: bika/health/content/patient.py:743 +#: bika/health/content/patient.py:734 msgid "Guarantor's Phone (home)" msgstr "" -#: bika/health/content/patient.py:750 +#: bika/health/content/patient.py:741 msgid "Guarantor's Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:711 +#: bika/health/content/patient.py:702 msgid "Guarantor's Surname" msgstr "" -#: bika/health/content/patient.py:729 +#: bika/health/content/patient.py:720 msgid "Guarantor's postal address" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "Health Care extension for SENAITE" msgstr "" @@ -694,7 +682,7 @@ msgstr "" msgid "Hispanic or Latino" msgstr "" -#: bika/health/browser/patient/historicresults.py:45 +#: bika/health/browser/patient/historicresults.py:51 msgid "Historic Results" msgstr "" @@ -711,11 +699,11 @@ msgstr "" msgid "ICD Code" msgstr "" -#: bika/health/content/patient.py:183 +#: bika/health/content/patient.py:174 msgid "Identifier" msgstr "" -#: bika/health/content/patient.py:182 +#: bika/health/content/patient.py:173 msgid "Identifier Type" msgstr "" @@ -724,11 +712,11 @@ msgstr "" msgid "Identifier Types" msgstr "" -#: bika/health/content/patient.py:647 +#: bika/health/content/patient.py:638 msgid "If checked, results reports will also be sent to the Patient automatically." msgstr "" -#: bika/health/content/bikasetup.py:84 +#: bika/health/content/bikasetup.py:64 msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -736,7 +724,7 @@ msgstr "" msgid "If checked, results reports will also be sent to the Patient automatically. This setting can be overriden either on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:637 +#: bika/health/content/patient.py:628 msgid "If checked, settings will be inherited from the Client, so further changes in Client for this setting will be populated too." msgstr "" @@ -744,19 +732,15 @@ msgstr "" msgid "If checked, the settings for results reports distribution to patients will be inherited from Bika Setup, so further changes in Bika Setup for this setting will be populated too." msgstr "" -#: bika/health/content/bikasetup.py:50 -msgid "If enabled, shows automatically an email form pop-up for alerting the client about a panic level exceeded when Analysis Request view is loaded" -msgstr "" - -#: bika/health/content/patient.py:684 +#: bika/health/content/patient.py:675 msgid "If it is checked the invoices will be send to the insurance company. In this case the insurance number will be mandatory." msgstr "" -#: bika/health/content/bikasetup.py:143 +#: bika/health/content/bikasetup.py:112 msgid "If selected, Client Patient IDs will be forced to be unique" msgstr "" -#: bika/health/content/patient.py:376 +#: bika/health/content/patient.py:367 #: bika/health/controlpanel/bika_immunizations.py:58 msgid "Immunization" msgstr "" @@ -771,13 +755,13 @@ msgstr "" msgid "Immunizations" msgstr "" -#: bika/health/browser/patients/folder_view.py:113 +#: bika/health/browser/patients/folder_view.py:114 #: bika/health/profiles/default/workflows/senaite_health_doctor_workflow/definition.xml #: bika/health/profiles/default/workflows/senaite_health_patient_workflow/definition.xml msgid "Inactive" msgstr "" -#: bika/health/content/bikasetup.py:73 +#: bika/health/content/bikasetup.py:53 msgid "Inches" msgstr "" @@ -785,7 +769,7 @@ msgstr "" msgid "Incorrect data format in '${title}', should be YYYY-MM-DD" msgstr "" -#: bika/health/content/patient.py:636 +#: bika/health/content/patient.py:627 msgid "Inherit default settings" msgstr "" @@ -798,12 +782,12 @@ msgstr "" msgid "Insurance Companies" msgstr "" -#: bika/health/content/patient.py:668 +#: bika/health/content/patient.py:659 msgid "Insurance Company" msgstr "" #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:38 -#: bika/health/content/patient.py:676 +#: bika/health/content/patient.py:667 msgid "Insurance Number" msgstr "" @@ -835,11 +819,7 @@ msgstr "" msgid "Irregular" msgstr "" -#: bika/health/content/bikasetup.py:122 -msgid "It enables the secondary analysis request form. This request has some characteristic features as allowing you to register more than one analysis request at the same time. It's useful if you are supposed to register a big amount of analysis request at the same time." -msgstr "" - -#: bika/health/content/patient.py:320 +#: bika/health/content/patient.py:311 msgid "Known Patient allergies to keep information that can aid drug reaction interpretation" msgstr "" @@ -847,11 +827,11 @@ msgstr "" msgid "Known undesirable effects of the drug" msgstr "" -#: bika/health/content/bikasetup.py:65 +#: bika/health/content/bikasetup.py:45 msgid "Lbs" msgstr "" -#: bika/health/content/patient.py:442 +#: bika/health/content/patient.py:433 msgid "Location" msgstr "Location" @@ -859,11 +839,6 @@ msgstr "Location" msgid "Male" msgstr "男/雄" -#: bika/health/content/analysisspec.py:50 -#: bika/health/widgets/analysisspecificationwidget.py:41 -msgid "Max panic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/casemenstrualstatuswidget.pt:32 msgid "Menstrual cycle type" msgstr "" @@ -876,11 +851,6 @@ msgstr "" msgid "Mild" msgstr "" -#: bika/health/content/analysisspec.py:49 -#: bika/health/widgets/analysisspecificationwidget.py:40 -msgid "Min panic" -msgstr "" - #: bika/health/browser/vaccinationcenter/vaccinationcenter.py:55 msgid "Mobile Phone" msgstr "手机" @@ -901,11 +871,11 @@ msgstr "" msgid "Months" msgstr "" -#: bika/health/content/patient.py:576 +#: bika/health/content/patient.py:567 msgid "Mothers name" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:61 +#: bika/health/controlpanel/bika_vaccinationcenters.py:75 msgid "Name" msgstr "名称" @@ -917,7 +887,7 @@ msgstr "" msgid "Native Hawaiian or Other Pacific Islander" msgstr "" -#: bika/health/browser/patient/historicresults.pt:254 +#: bika/health/browser/patient/historicresults.pt:144 msgid "No historic results found" msgstr "" @@ -1005,7 +975,7 @@ msgstr "" #: bika/health/browser/analysisrequests/view.py:52 #: bika/health/browser/batchfolder.py:109 -#: bika/health/browser/patients/folder_view.py:67 +#: bika/health/browser/patients/folder_view.py:68 msgid "Patient ID" msgstr "" @@ -1017,33 +987,33 @@ msgstr "" msgid "Patient Information" msgstr "" -#: bika/health/content/patient.py:191 +#: bika/health/content/patient.py:182 msgid "Patient additional identifiers" msgstr "" -#: bika/health/content/bikasetup.py:59 +#: bika/health/content/bikasetup.py:39 msgid "Patient condition height units" msgstr "" -#: bika/health/content/bikasetup.py:75 +#: bika/health/content/bikasetup.py:55 msgid "Patient condition waist units" msgstr "" -#: bika/health/content/bikasetup.py:67 +#: bika/health/content/bikasetup.py:47 msgid "Patient condition weight units" msgstr "" -#: bika/health/content/patient.py:505 +#: bika/health/content/patient.py:496 msgid "Patient's past medical history." msgstr "" -#: bika/health/browser/patients/folder_view.py:46 +#: bika/health/browser/patients/folder_view.py:47 msgid "Patients" msgstr "" #: bika/health/browser/batch/publish.pt:68 #: bika/health/controlpanel/bika_insurancecompanies.py:56 -#: bika/health/controlpanel/bika_vaccinationcenters.py:65 +#: bika/health/controlpanel/bika_vaccinationcenters.py:83 msgid "Phone" msgstr "电话" @@ -1055,7 +1025,7 @@ msgstr "" msgid "Phone (mobile)" msgstr "" -#: bika/health/content/patient.py:597 +#: bika/health/content/patient.py:588 msgid "Photo" msgstr "" @@ -1084,7 +1054,7 @@ msgid "Price" msgstr "" #: bika/health/browser/doctors/folder_view.py:54 -#: bika/health/browser/patients/folder_view.py:92 +#: bika/health/browser/patients/folder_view.py:93 msgid "Primary Referrer" msgstr "" @@ -1092,7 +1062,7 @@ msgstr "" msgid "Print date:" msgstr "" -#: bika/health/content/patient.py:81 +#: bika/health/content/patient.py:79 msgid "Province" msgstr "" @@ -1112,7 +1082,6 @@ msgstr "" msgid "QC Results" msgstr "" -#: bika/health/browser/patient/historicresults.pt:218 #: bika/health/impress/reports/Default.pt:485 msgid "Range" msgstr "" @@ -1131,7 +1100,7 @@ msgstr "" #: bika/health/content/aetiologicagent.py:36 #: bika/health/content/insurancecompany.py:36 -#: bika/health/content/patient.py:224 +#: bika/health/content/patient.py:215 msgid "Remarks" msgstr "注释" @@ -1143,14 +1112,6 @@ msgstr "" msgid "Result" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:114 -msgid "Result exceeded panic level" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:111 -msgid "Result in shoulder panic range" -msgstr "" - #: bika/health/impress/reports/Default.pt:682 msgid "Result out of client specified range." msgstr "" @@ -1159,9 +1120,9 @@ msgstr "" msgid "Results" msgstr "" -#: bika/health/content/bikasetup.py:107 +#: bika/health/content/bikasetup.py:87 #: bika/health/content/client.py:71 -#: bika/health/content/patient.py:655 +#: bika/health/content/patient.py:646 msgid "Results attachments permitted" msgstr "" @@ -1169,7 +1130,7 @@ msgstr "" msgid "Results interpretation" msgstr "" -#: bika/health/configure.zcml:52 +#: bika/health/configure.zcml:51 msgid "SENAITE Health" msgstr "" @@ -1209,7 +1170,7 @@ msgstr "" msgid "Select a type of treatment." msgstr "" -#: bika/health/content/bikasetup.py:95 +#: bika/health/content/bikasetup.py:75 msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden either on 'Patient publication preferences' tab from Client view or on Patient's 'Publication preferences' tab." msgstr "" @@ -1217,7 +1178,7 @@ msgstr "" msgid "Select the preferred channels to be used for sending the results reports to Patients. This setting can be overriden on Patient's 'Publication preferences' tab." msgstr "" -#: bika/health/content/patient.py:683 +#: bika/health/content/patient.py:674 msgid "Send invoices to the insurance company." msgstr "" @@ -1241,19 +1202,15 @@ msgstr "" msgid "Shock treatment" msgstr "" -#: bika/health/content/bikasetup.py:133 +#: bika/health/content/bikasetup.py:102 msgid "Should the Doctor field be mandatory while creating a case?" msgstr "" -#: bika/health/content/bikasetup.py:49 -msgid "Show client email pop-up when panic level" -msgstr "" - #: bika/health/content/treatment.py:108 msgid "Specific treatment" msgstr "" -#: bika/health/content/patient.py:243 +#: bika/health/content/patient.py:234 msgid "Start" msgstr "" @@ -1304,7 +1261,7 @@ msgstr "" msgid "Taxes" msgstr "" -#: bika/health/browser/patient/historicresults.pt:213 +#: bika/health/browser/patient/historicresults.pt:72 msgid "Test" msgstr "" @@ -1312,15 +1269,15 @@ msgstr "" msgid "Test results are at a ${lab_confidence}% confidence level" msgstr "" -#: bika/health/content/patient.py:702 +#: bika/health/content/patient.py:693 msgid "The ID number (Insurance Number) from the person whose contract cover the current patient." msgstr "" -#: bika/health/content/patient.py:693 +#: bika/health/content/patient.py:684 msgid "The patient and the guarantor are the same." msgstr "" -#: bika/health/content/patient.py:692 +#: bika/health/content/patient.py:683 msgid "The patient is the guarantor." msgstr "" @@ -1337,7 +1294,7 @@ msgid "This document shall not be reproduced except in full, without the written msgstr "" #: bika/health/content/batch.py:138 -#: bika/health/content/patient.py:79 +#: bika/health/content/patient.py:77 #: bika/health/controlpanel/bika_aetiologicagents.py:53 msgid "Title" msgstr "标题" @@ -1380,12 +1337,12 @@ msgid "Treatments" msgstr "" #. Default: "End date" -#: bika/health/content/patient.py:440 +#: bika/health/content/patient.py:431 msgid "Trip End Date" msgstr "" #. Default: "Start date" -#: bika/health/content/patient.py:439 +#: bika/health/content/patient.py:430 msgid "Trip Start Date" msgstr "" @@ -1393,11 +1350,7 @@ msgstr "" msgid "Unit" msgstr "" -#: bika/health/browser/patient/historicresults.pt:217 -msgid "Units" -msgstr "" - -#: bika/health/content/bikasetup.py:60 +#: bika/health/content/bikasetup.py:40 msgid "Use '/' symbol to allow multiple-units submission" msgstr "" @@ -1410,11 +1363,11 @@ msgstr "" msgid "VAT" msgstr "" -#: bika/health/content/patient.py:377 +#: bika/health/content/patient.py:368 msgid "Vaccination Center" msgstr "" -#: bika/health/controlpanel/bika_vaccinationcenters.py:52 +#: bika/health/controlpanel/bika_vaccinationcenters.py:63 #: bika/health/profiles/default/controlpanel.xml msgid "Vaccination Centers" msgstr "" @@ -1423,14 +1376,6 @@ msgstr "" msgid "Validation failed: '${value}' is not unique" msgstr "" -#: bika/health/widgets/analysisspecificationwidget.py:124 -msgid "Validation failed: Panic max value must be greater than panic min value" -msgstr "" - -#: bika/health/widgets/analysisspecificationwidget.py:114 -msgid "Validation failed: Panic min value must be numeric" -msgstr "" - #: bika/health/browser/analysisrequest/templates/analysisrequest_invoice_content.pt:123 msgid "Verified By" msgstr "" @@ -1480,14 +1425,6 @@ msgstr "yy-mm-dd" msgid "days" msgstr "" -#: bika/health/browser/analysis/resultoutofrange.py:106 -msgid "maxpanic" -msgstr "" - -#: bika/health/browser/analysis/resultoutofrange.py:105 -msgid "minpanic" -msgstr "" - #: bika/health/skins/bika_health/bika_health_widgets/splitteddatewidget.pt:22 msgid "months" msgstr "" diff --git a/bika/health/monkeys/__init__.py b/bika/health/monkeys/__init__.py index e69de29b..358d58e7 100644 --- a/bika/health/monkeys/__init__.py +++ b/bika/health/monkeys/__init__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.HEALTH. +# +# SENAITE.HEALTH is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the Free +# Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2020 by it's authors. +# Some rights reserved, see README and LICENSE. diff --git a/bika/health/monkeys/batch.py b/bika/health/monkeys/batch.py index 73fc0d1d..98d98892 100644 --- a/bika/health/monkeys/batch.py +++ b/bika/health/monkeys/batch.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.interfaces import IPatient diff --git a/bika/health/monkeys/batchfolder.py b/bika/health/monkeys/batchfolder.py index fc770eaa..be92aee0 100644 --- a/bika/health/monkeys/batchfolder.py +++ b/bika/health/monkeys/batchfolder.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims import AddBatch diff --git a/bika/health/monkeys/macrowidget.py b/bika/health/monkeys/macrowidget.py index ab47f4fa..7b1ee3a9 100644 --- a/bika/health/monkeys/macrowidget.py +++ b/bika/health/monkeys/macrowidget.py @@ -15,12 +15,9 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. -# TODO Remove for compatibility with senaite.core v1.3.3 -# Superseded by https://github.com/senaite/senaite.core/pull/1466 - from AccessControl.unauthorized import Unauthorized @@ -46,4 +43,4 @@ def __call__(self, mode, instance, context=None): # This means we didn't have access or it doesn't exist pass raise AttributeError("Macro %s does not exist for %s" % (macro, - instance)) \ No newline at end of file + instance)) diff --git a/bika/health/obsolete/__init__.py b/bika/health/obsolete/__init__.py index d0e0d9c9..6338fe6c 100644 --- a/bika/health/obsolete/__init__.py +++ b/bika/health/obsolete/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import bikaMessageFactory as _ diff --git a/bika/health/permissions.py b/bika/health/permissions.py index 058a702d..0b143d7e 100644 --- a/bika/health/permissions.py +++ b/bika/health/permissions.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. AddAetiologicAgent = 'senaite.health: Add AetiologicAgent' diff --git a/bika/health/setupdata/__init__.py b/bika/health/setupdata/__init__.py index caff2fa6..2b6f1967 100644 --- a/bika/health/setupdata/__init__.py +++ b/bika/health/setupdata/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import os.path diff --git a/bika/health/setuphandlers.py b/bika/health/setuphandlers.py index b96d0e72..c3e39540 100644 --- a/bika/health/setuphandlers.py +++ b/bika/health/setuphandlers.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import itertools diff --git a/bika/health/static/__init__.py b/bika/health/static/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/static/__init__.py +++ b/bika/health/static/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/subscribers/__init__.py b/bika/health/subscribers/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/subscribers/__init__.py +++ b/bika/health/subscribers/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/subscribers/batch.py b/bika/health/subscribers/batch.py index 330d4ef8..a8a3e858 100644 --- a/bika/health/subscribers/batch.py +++ b/bika/health/subscribers/batch.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.interfaces import IPatient diff --git a/bika/health/subscribers/patient.py b/bika/health/subscribers/patient.py index 0dd777ac..6109dbb5 100644 --- a/bika/health/subscribers/patient.py +++ b/bika/health/subscribers/patient.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims import api diff --git a/bika/health/testing.py b/bika/health/testing.py index 51a8cde3..3b827940 100644 --- a/bika/health/testing.py +++ b/bika/health/testing.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.lims.exportimport.load_setup_data import LoadSetupData diff --git a/bika/health/tests/__init__.py b/bika/health/tests/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/tests/__init__.py +++ b/bika/health/tests/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/tests/base.py b/bika/health/tests/base.py index 9af792a2..2b17b2ae 100644 --- a/bika/health/tests/base.py +++ b/bika/health/tests/base.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import unittest2 as unittest diff --git a/bika/health/tests/test_doctests.py b/bika/health/tests/test_doctests.py index 2dd780bd..51573a34 100644 --- a/bika/health/tests/test_doctests.py +++ b/bika/health/tests/test_doctests.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import doctest diff --git a/bika/health/tests/test_setup.py b/bika/health/tests/test_setup.py index 3cafb289..787fe878 100644 --- a/bika/health/tests/test_setup.py +++ b/bika/health/tests/test_setup.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health.tests.base import SimpleTestCase diff --git a/bika/health/upgrade/__init__.py b/bika/health/upgrade/__init__.py index 2ec8771c..358d58e7 100644 --- a/bika/health/upgrade/__init__.py +++ b/bika/health/upgrade/__init__.py @@ -15,5 +15,5 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. diff --git a/bika/health/upgrade/utils.py b/bika/health/upgrade/utils.py index 28d4564e..4dc78a9a 100644 --- a/bika/health/upgrade/utils.py +++ b/bika/health/upgrade/utils.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_00_000.py b/bika/health/upgrade/v01_00_000.py index f7f215ad..905957f4 100644 --- a/bika/health/upgrade/v01_00_000.py +++ b/bika/health/upgrade/v01_00_000.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Acquisition import aq_inner diff --git a/bika/health/upgrade/v01_01_000.py b/bika/health/upgrade/v01_01_000.py index ce588cf3..528c2cc6 100644 --- a/bika/health/upgrade/v01_01_000.py +++ b/bika/health/upgrade/v01_01_000.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_01_001.py b/bika/health/upgrade/v01_01_001.py index d9ca3966..f78aa098 100644 --- a/bika/health/upgrade/v01_01_001.py +++ b/bika/health/upgrade/v01_01_001.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_01_002.py b/bika/health/upgrade/v01_01_002.py index 36d61b41..ff286094 100644 --- a/bika/health/upgrade/v01_01_002.py +++ b/bika/health/upgrade/v01_01_002.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_01_003.py b/bika/health/upgrade/v01_01_003.py index eed55db0..f6b6fdc0 100644 --- a/bika/health/upgrade/v01_01_003.py +++ b/bika/health/upgrade/v01_01_003.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFCore import permissions diff --git a/bika/health/upgrade/v01_02_000.py b/bika/health/upgrade/v01_02_000.py index 09efe310..6d3375a8 100644 --- a/bika/health/upgrade/v01_02_000.py +++ b/bika/health/upgrade/v01_02_000.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_02_001.py b/bika/health/upgrade/v01_02_001.py index 17f36a42..d6d3ef62 100644 --- a/bika/health/upgrade/v01_02_001.py +++ b/bika/health/upgrade/v01_02_001.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from bika.health import logger diff --git a/bika/health/upgrade/v01_02_002.py b/bika/health/upgrade/v01_02_002.py index 57976aa8..24b4c473 100644 --- a/bika/health/upgrade/v01_02_002.py +++ b/bika/health/upgrade/v01_02_002.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. import time diff --git a/bika/health/upgrade/v01_02_003.py b/bika/health/upgrade/v01_02_003.py index 2be39ac1..c1b8d112 100644 --- a/bika/health/upgrade/v01_02_003.py +++ b/bika/health/upgrade/v01_02_003.py @@ -15,8 +15,9 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. + from bika.health import CATALOG_PATIENTS from bika.health import api from bika.health import DEFAULT_PROFILE_ID diff --git a/bika/health/utils.py b/bika/health/utils.py index 11ecfc60..a517bb8e 100644 --- a/bika/health/utils.py +++ b/bika/health/utils.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from datetime import datetime diff --git a/bika/health/validators.py b/bika/health/validators.py index a5e5567f..b188deda 100644 --- a/bika/health/validators.py +++ b/bika/health/validators.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from Products.CMFPlone.utils import safe_unicode diff --git a/bika/health/version.txt b/bika/health/version.txt new file mode 100644 index 00000000..0495c4a8 --- /dev/null +++ b/bika/health/version.txt @@ -0,0 +1 @@ +1.2.3 diff --git a/bika/health/widgets/__init__.py b/bika/health/widgets/__init__.py index cc15c6c2..5c4515c0 100644 --- a/bika/health/widgets/__init__.py +++ b/bika/health/widgets/__init__.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from caseaetiologicagentswidget import CaseAetiologicAgentsWidget diff --git a/bika/health/widgets/caseaetiologicagentswidget.py b/bika/health/widgets/caseaetiologicagentswidget.py index e9569f6d..31465c1e 100644 --- a/bika/health/widgets/caseaetiologicagentswidget.py +++ b/bika/health/widgets/caseaetiologicagentswidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/casebasalbodytempwidget.py b/bika/health/widgets/casebasalbodytempwidget.py index 02a33d7b..5572ee2d 100644 --- a/bika/health/widgets/casebasalbodytempwidget.py +++ b/bika/health/widgets/casebasalbodytempwidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/casemenstrualstatuswidget.py b/bika/health/widgets/casemenstrualstatuswidget.py index 9673fa12..55cc719f 100644 --- a/bika/health/widgets/casemenstrualstatuswidget.py +++ b/bika/health/widgets/casemenstrualstatuswidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/casepatientconditionwidget.py b/bika/health/widgets/casepatientconditionwidget.py index d45d9723..8cab3720 100644 --- a/bika/health/widgets/casepatientconditionwidget.py +++ b/bika/health/widgets/casepatientconditionwidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/casesymptomswidget.py b/bika/health/widgets/casesymptomswidget.py index 97de79f8..65a3b82c 100644 --- a/bika/health/widgets/casesymptomswidget.py +++ b/bika/health/widgets/casesymptomswidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/patientmenstrualstatuswidget.py b/bika/health/widgets/patientmenstrualstatuswidget.py index 9618a071..879fdaa4 100644 --- a/bika/health/widgets/patientmenstrualstatuswidget.py +++ b/bika/health/widgets/patientmenstrualstatuswidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/readonlystringwidget.py b/bika/health/widgets/readonlystringwidget.py index a9cbb14b..178f67ba 100644 --- a/bika/health/widgets/readonlystringwidget.py +++ b/bika/health/widgets/readonlystringwidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/bika/health/widgets/splitteddatewidget.py b/bika/health/widgets/splitteddatewidget.py index 1ca0b961..f04db31f 100644 --- a/bika/health/widgets/splitteddatewidget.py +++ b/bika/health/widgets/splitteddatewidget.py @@ -15,7 +15,7 @@ # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright 2018-2019 by it's authors. +# Copyright 2018-2020 by it's authors. # Some rights reserved, see README and LICENSE. from AccessControl import ClassSecurityInfo diff --git a/setup.py b/setup.py index aef565aa..64e6a35e 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ "Programming Language :: Python", ], keywords=['lims', 'lis', 'senaite', 'opensource', 'health'], - author='SENAITE Foundation', - author_email='support@senaite.com', + author="RIDING BYTES & NARALABS", + author_email="senaite@senaite.com", url='https://github.com/senaite/senaite.health', license='GPLv2', packages=find_packages(exclude=['ez_setup']), @@ -34,8 +34,7 @@ zip_safe=False, install_requires=[ "archetypes.schemaextender", - "senaite.lims>=1.3.1", - "senaite.lims<2.0.0", + "senaite.lims==1.3.3.1", "senaite.panic", # Python 2.7 compatibility #