OpenREM 1.0.0b2__py3-none-any.whl → 1.0.0b3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (279) hide show
  1. openrem/locale/de/LC_MESSAGES/django.po +1060 -1059
  2. openrem/locale/django.pot +973 -972
  3. openrem/locale/es_MX/LC_MESSAGES/django.po +1049 -1048
  4. openrem/locale/it/LC_MESSAGES/django.po +1044 -1043
  5. openrem/locale/lt/LC_MESSAGES/django.po +989 -988
  6. openrem/locale/nb_NO/LC_MESSAGES/django.po +985 -984
  7. openrem/locale/pt_BR/LC_MESSAGES/django.po +1003 -1002
  8. openrem/manage.py +10 -10
  9. openrem/openremproject/__init__.py +1 -1
  10. openrem/openremproject/local_settings.py.linux +128 -128
  11. openrem/openremproject/local_settings.py.windows +144 -144
  12. openrem/openremproject/local_settings.py.windows-sqlite3 +129 -129
  13. openrem/openremproject/settings.py +278 -278
  14. openrem/openremproject/urls.py +32 -32
  15. openrem/openremproject/wsgi.py.example +28 -28
  16. openrem/remapp/__init__.py +2 -2
  17. openrem/remapp/admin.py +31 -31
  18. openrem/remapp/exports/ct_export.py +780 -753
  19. openrem/remapp/exports/dx_export.py +817 -805
  20. openrem/remapp/exports/export_common.py +931 -951
  21. openrem/remapp/exports/export_common_pandas.py +2422 -0
  22. openrem/remapp/exports/exportviews.py +815 -860
  23. openrem/remapp/exports/mg_csv_nhsbsp.py +292 -292
  24. openrem/remapp/exports/mg_export.py +673 -510
  25. openrem/remapp/exports/nm_export.py +796 -575
  26. openrem/remapp/exports/rf_export.py +1418 -1431
  27. openrem/remapp/extractors/ct_philips.py +424 -414
  28. openrem/remapp/extractors/ct_toshiba.py +2116 -2108
  29. openrem/remapp/extractors/dx.py +1033 -952
  30. openrem/remapp/extractors/extract_common.py +817 -817
  31. openrem/remapp/extractors/import_views.py +426 -426
  32. openrem/remapp/extractors/mam.py +685 -672
  33. openrem/remapp/extractors/nm_image.py +439 -431
  34. openrem/remapp/extractors/ptsizecsv2db.py +368 -368
  35. openrem/remapp/extractors/rdsr.py +667 -654
  36. openrem/remapp/extractors/rdsr_methods.py +1771 -1768
  37. openrem/remapp/extractors/rrdsr_methods.py +630 -622
  38. openrem/remapp/fixtures/openskin_safelist.json +11 -11
  39. openrem/remapp/forms.py +2286 -2277
  40. openrem/remapp/interface/chart_functions.py +2412 -2393
  41. openrem/remapp/interface/mod_filters.py +1241 -1243
  42. openrem/remapp/migrations/0001_initial.py.1-0-upgrade +1043 -1043
  43. openrem/remapp/models.py +3418 -3407
  44. openrem/remapp/netdicom/dicomviews.py +681 -683
  45. openrem/remapp/netdicom/qrscu.py +2646 -2646
  46. openrem/remapp/netdicom/tools.py +134 -134
  47. openrem/remapp/static/css/bootstrap-theme.css +587 -587
  48. openrem/remapp/static/css/bootstrap-theme.min.css +4 -4
  49. openrem/remapp/static/css/bootstrap.css +6800 -6800
  50. openrem/remapp/static/css/bootstrap.min.css +4 -4
  51. openrem/remapp/static/css/datepicker3.css +790 -790
  52. openrem/remapp/static/css/jquery.qtip.min.css +2 -2
  53. openrem/remapp/static/css/openrem-extra.css +442 -442
  54. openrem/remapp/static/css/openrem.css +96 -96
  55. openrem/remapp/static/css/registration.css +34 -34
  56. openrem/remapp/static/fonts/glyphicons-halflings-regular.svg +287 -287
  57. openrem/remapp/static/js/bootstrap-datepicker.js +1671 -1671
  58. openrem/remapp/static/js/bootstrap.js +2363 -2363
  59. openrem/remapp/static/js/bootstrap.min.js +6 -6
  60. openrem/remapp/static/js/charts/chartCommonFunctions.js +75 -75
  61. openrem/remapp/static/js/charts/chartFullScreen.js +41 -41
  62. openrem/remapp/static/js/charts/ctChartAjax.js +331 -331
  63. openrem/remapp/static/js/charts/dxChartAjax.js +290 -290
  64. openrem/remapp/static/js/charts/mgChartAjax.js +144 -144
  65. openrem/remapp/static/js/charts/nmChartAjax.js +64 -64
  66. openrem/remapp/static/js/charts/plotly-2.35.2.min.js +8 -0
  67. openrem/remapp/static/js/charts/rfChartAjax.js +128 -128
  68. openrem/remapp/static/js/chroma.min.js +32 -32
  69. openrem/remapp/static/js/datepicker.js +5 -5
  70. openrem/remapp/static/js/dicom.js +115 -115
  71. openrem/remapp/static/js/django_reverse/reverse.js +13 -13
  72. openrem/remapp/static/js/formatDate.js +7 -7
  73. openrem/remapp/static/js/html5shiv.min.js +8 -8
  74. openrem/remapp/static/js/jquery-1.11.0.min.js +4 -4
  75. openrem/remapp/static/js/npm.js +12 -12
  76. openrem/remapp/static/js/respond.min.js +4 -4
  77. openrem/remapp/static/js/skin-dose-maps/jquery.qtip.min.js +4 -4
  78. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dHUDObject.js +112 -112
  79. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dObject.js +367 -367
  80. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dPersonObject.js +158 -158
  81. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapColourScaleObject.js +153 -153
  82. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapObject.js +367 -367
  83. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapping.js +584 -584
  84. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapping3d.js +255 -255
  85. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMappingAjax.js +267 -212
  86. openrem/remapp/static/js/skin-dose-maps/three.min.js +835 -835
  87. openrem/remapp/static/js/sorttable.js +495 -495
  88. openrem/remapp/templates/base.html +253 -253
  89. openrem/remapp/templates/registration/changepassword.html +25 -25
  90. openrem/remapp/templates/registration/changepassworddone.html +12 -12
  91. openrem/remapp/templates/registration/login.html +42 -42
  92. openrem/remapp/templates/remapp/backgroundtaskmaximumrows_form.html +29 -29
  93. openrem/remapp/templates/remapp/base.html +1 -1
  94. openrem/remapp/templates/remapp/ctdetail.html +235 -235
  95. openrem/remapp/templates/remapp/ctfiltered.html +310 -310
  96. openrem/remapp/templates/remapp/dicomdeletesettings_form.html +31 -31
  97. openrem/remapp/templates/remapp/dicomqr.html +147 -147
  98. openrem/remapp/templates/remapp/dicomquerydetails.html +83 -83
  99. openrem/remapp/templates/remapp/dicomqueryimages.html +49 -49
  100. openrem/remapp/templates/remapp/dicomqueryseries.html +109 -109
  101. openrem/remapp/templates/remapp/dicomquerysummary.html +48 -48
  102. openrem/remapp/templates/remapp/dicomremoteqr_confirm_delete.html +60 -60
  103. openrem/remapp/templates/remapp/dicomremoteqr_form.html +32 -32
  104. openrem/remapp/templates/remapp/dicomstorescp_confirm_delete.html +53 -53
  105. openrem/remapp/templates/remapp/dicomstorescp_form.html +48 -48
  106. openrem/remapp/templates/remapp/dicomsummary.html +257 -257
  107. openrem/remapp/templates/remapp/displaychartoptions.html +184 -184
  108. openrem/remapp/templates/remapp/displayhomepageoptions.html +57 -57
  109. openrem/remapp/templates/remapp/displayname-count.html +6 -6
  110. openrem/remapp/templates/remapp/displayname-last-date.html +3 -3
  111. openrem/remapp/templates/remapp/displayname-modality.html +86 -105
  112. openrem/remapp/templates/remapp/displayname-skinmap.html +18 -18
  113. openrem/remapp/templates/remapp/displaynameupdate.html +100 -100
  114. openrem/remapp/templates/remapp/displaynameview.html +222 -219
  115. openrem/remapp/templates/remapp/dxdetail.html +176 -176
  116. openrem/remapp/templates/remapp/dxfiltered.html +324 -324
  117. openrem/remapp/templates/remapp/exports-active.html +25 -25
  118. openrem/remapp/templates/remapp/exports-complete.html +35 -35
  119. openrem/remapp/templates/remapp/exports-error.html +26 -26
  120. openrem/remapp/templates/remapp/exports-queue.html +18 -18
  121. openrem/remapp/templates/remapp/exports.html +191 -191
  122. openrem/remapp/templates/remapp/failed_summary_list.html +27 -27
  123. openrem/remapp/templates/remapp/filteredbase.html +162 -162
  124. openrem/remapp/templates/remapp/highdosemetricalertsettings_form.html +76 -76
  125. openrem/remapp/templates/remapp/home-list-modalities.html +94 -94
  126. openrem/remapp/templates/remapp/home.html +202 -202
  127. openrem/remapp/templates/remapp/list_filters.html +24 -24
  128. openrem/remapp/templates/remapp/mgdetail.html +160 -138
  129. openrem/remapp/templates/remapp/mgfiltered.html +311 -311
  130. openrem/remapp/templates/remapp/nmdetail.html +300 -300
  131. openrem/remapp/templates/remapp/nmfiltered.html +255 -255
  132. openrem/remapp/templates/remapp/notpatient.html +190 -190
  133. openrem/remapp/templates/remapp/notpatientindicators_form_base.html +81 -81
  134. openrem/remapp/templates/remapp/notpatientindicatorsid_confirm_delete.html +54 -54
  135. openrem/remapp/templates/remapp/notpatientindicatorsid_form.html +23 -23
  136. openrem/remapp/templates/remapp/notpatientindicatorsname_confirm_delete.html +54 -54
  137. openrem/remapp/templates/remapp/notpatientindicatorsname_form.html +23 -23
  138. openrem/remapp/templates/remapp/notpatientindicatorsname_form_base.html +85 -85
  139. openrem/remapp/templates/remapp/openskinsafelist_add.html +130 -130
  140. openrem/remapp/templates/remapp/openskinsafelist_confirm_delete.html +100 -100
  141. openrem/remapp/templates/remapp/openskinsafelist_form.html +207 -207
  142. openrem/remapp/templates/remapp/patientidsettings_form.html +83 -83
  143. openrem/remapp/templates/remapp/populate_summary_progress.html +83 -83
  144. openrem/remapp/templates/remapp/populate_summary_progress_error.html +36 -36
  145. openrem/remapp/templates/remapp/review_failed_imports.html +157 -157
  146. openrem/remapp/templates/remapp/review_failed_study.html +41 -41
  147. openrem/remapp/templates/remapp/review_studies_delete_button.html +20 -20
  148. openrem/remapp/templates/remapp/review_study.html +19 -19
  149. openrem/remapp/templates/remapp/review_summary_list.html +245 -245
  150. openrem/remapp/templates/remapp/rf_dose_alert_email_template.html +14 -1
  151. openrem/remapp/templates/remapp/rfalertnotificationsview.html +59 -59
  152. openrem/remapp/templates/remapp/rfdetail.html +547 -543
  153. openrem/remapp/templates/remapp/rfdetailbase.html +18 -18
  154. openrem/remapp/templates/remapp/rffiltered.html +404 -404
  155. openrem/remapp/templates/remapp/sizeimports.html +119 -119
  156. openrem/remapp/templates/remapp/sizeprocess.html +96 -96
  157. openrem/remapp/templates/remapp/sizeupload.html +110 -110
  158. openrem/remapp/templates/remapp/skindosemapcalcsettings_form.html +28 -28
  159. openrem/remapp/templates/remapp/standardname-modality.html +69 -69
  160. openrem/remapp/templates/remapp/standardnames_confirm_delete.html +71 -71
  161. openrem/remapp/templates/remapp/standardnames_form.html +87 -87
  162. openrem/remapp/templates/remapp/standardnamesettings_form.html +41 -41
  163. openrem/remapp/templates/remapp/standardnamesrefreshall.html +92 -92
  164. openrem/remapp/templates/remapp/standardnameview.html +103 -103
  165. openrem/remapp/templates/remapp/study_confirm_delete.html +147 -147
  166. openrem/remapp/templates/remapp/task_admin.html +265 -265
  167. openrem/remapp/templates/remapp/tasks.html +76 -76
  168. openrem/remapp/templatetags/formfilters.py +13 -13
  169. openrem/remapp/templatetags/proper_paginate.py +38 -38
  170. openrem/remapp/templatetags/remappduration.py +36 -36
  171. openrem/remapp/templatetags/sigdig.py +38 -38
  172. openrem/remapp/templatetags/sort_class_property_value.py +15 -15
  173. openrem/remapp/templatetags/update_variable.py +20 -20
  174. openrem/remapp/templatetags/url_replace.py +25 -25
  175. openrem/remapp/tests/test_charts_common.py +202 -202
  176. openrem/remapp/tests/test_charts_ct.py +7111 -7111
  177. openrem/remapp/tests/test_charts_dx.py +3513 -3513
  178. openrem/remapp/tests/test_charts_mg.py +1116 -1115
  179. openrem/remapp/tests/test_dcmdatetime.py +189 -189
  180. openrem/remapp/tests/test_dicom_qr.py +2580 -2580
  181. openrem/remapp/tests/test_display_name.py +274 -274
  182. openrem/remapp/tests/test_export_ct_xlsx.py +272 -248
  183. openrem/remapp/tests/test_export_dx_xlsx.py +137 -134
  184. openrem/remapp/tests/test_export_mammo_csv.py +242 -242
  185. openrem/remapp/tests/test_export_rf_xlsx.py +246 -246
  186. openrem/remapp/tests/test_files/DX-Im-DRGEM.dcm +0 -0
  187. openrem/remapp/tests/test_files/MG-RDSR-GEPristina-2D.dcm +0 -0
  188. openrem/remapp/tests/test_files/MG-RDSR-GEPristina-DBT.dcm +0 -0
  189. openrem/remapp/tests/test_files/MG-RDSR-Giotto-DBT.dcm +0 -0
  190. openrem/remapp/tests/test_files/skin_map_alphenix.py +590 -590
  191. openrem/remapp/tests/test_files/skin_map_zee.py +354 -354
  192. openrem/remapp/tests/test_filters_ct.py +321 -321
  193. openrem/remapp/tests/test_filters_dx.py +92 -92
  194. openrem/remapp/tests/test_filters_mammo.py +183 -183
  195. openrem/remapp/tests/test_filters_rf.py +118 -118
  196. openrem/remapp/tests/test_get_values.py +72 -72
  197. openrem/remapp/tests/test_hash_id.py +65 -65
  198. openrem/remapp/tests/test_import_ct_esr_ge.py +3034 -3034
  199. openrem/remapp/tests/test_import_ct_philips_rdsr.py +42 -42
  200. openrem/remapp/tests/test_import_ct_rdsr_multiple.py +256 -256
  201. openrem/remapp/tests/test_import_ct_rdsr_siemens.py +827 -827
  202. openrem/remapp/tests/test_import_ct_rdsr_spectrumdynamics.py +91 -91
  203. openrem/remapp/tests/test_import_ct_rdsr_toshiba_dosecheck.py +67 -67
  204. openrem/remapp/tests/test_import_ct_rdsr_toshiba_multivaluesd.py +33 -33
  205. openrem/remapp/tests/test_import_ct_rdsr_toshiba_pixelmed.py +118 -118
  206. openrem/remapp/tests/test_import_ct_sc_philips.py +44 -44
  207. openrem/remapp/tests/test_import_dual_rdsr.py +110 -110
  208. openrem/remapp/tests/test_import_dx.py +1267 -1191
  209. openrem/remapp/tests/test_import_dx_rdsr.py +1250 -1253
  210. openrem/remapp/tests/test_import_mam.py +438 -438
  211. openrem/remapp/tests/test_import_mg_im_hol_proj.py +46 -46
  212. openrem/remapp/tests/test_import_mg_rdsr.py +586 -586
  213. openrem/remapp/tests/test_import_nm_image.py +420 -420
  214. openrem/remapp/tests/test_import_nm_siemens_rdsr.py +396 -396
  215. openrem/remapp/tests/test_import_px.py +161 -161
  216. openrem/remapp/tests/test_import_rf_rdsr.py +420 -418
  217. openrem/remapp/tests/test_missing_date.py +42 -42
  218. openrem/remapp/tests/test_not_patient.py +60 -60
  219. openrem/remapp/tests/test_openskin.py +272 -272
  220. openrem/remapp/tests/test_patient_id_settings.py +72 -72
  221. openrem/remapp/tests/test_pt_size_import.py +232 -232
  222. openrem/remapp/tests/test_rf_detail.py +113 -113
  223. openrem/remapp/tests/test_rf_high_dose_alert.py +361 -361
  224. openrem/remapp/tools/background.py +361 -361
  225. openrem/remapp/tools/check_standard_name_status.py +47 -0
  226. openrem/remapp/tools/check_uid.py +70 -70
  227. openrem/remapp/tools/dcmdatetime.py +248 -248
  228. openrem/remapp/tools/default_import.py +44 -47
  229. openrem/remapp/tools/get_values.py +230 -230
  230. openrem/remapp/tools/hash_id.py +58 -58
  231. openrem/remapp/tools/make_skin_map.py +448 -406
  232. openrem/remapp/tools/not_patient_indicators.py +72 -72
  233. openrem/remapp/tools/openskin/calc_exp_map.py +173 -173
  234. openrem/remapp/tools/openskin/geomclass.py +475 -475
  235. openrem/remapp/tools/openskin/geomfunc.py +433 -432
  236. openrem/remapp/tools/openskin/skinmap.py +417 -417
  237. openrem/remapp/tools/populate_summary.py +185 -193
  238. openrem/remapp/tools/save_skin_map_structure.py +73 -73
  239. openrem/remapp/tools/send_high_dose_alert_emails.py +238 -207
  240. openrem/remapp/urls.py +456 -448
  241. openrem/remapp/version.py +11 -11
  242. openrem/remapp/views.py +1147 -1052
  243. openrem/remapp/views_admin.py +3876 -3936
  244. openrem/remapp/views_charts_ct.py +2110 -2058
  245. openrem/remapp/views_charts_dx.py +1906 -1836
  246. openrem/remapp/views_charts_mg.py +1349 -1196
  247. openrem/remapp/views_charts_nm.py +535 -535
  248. openrem/remapp/views_charts_rf.py +1219 -1241
  249. openrem/remapp/views_openskin.py +379 -384
  250. openrem/sample-config/openrem-consumer.service +12 -12
  251. openrem/sample-config/openrem-gunicorn.service +13 -13
  252. openrem/sample-config/openrem-server +14 -13
  253. openrem/sample-config/openrem_orthanc_config_linux.lua +454 -454
  254. openrem/sample-config/openrem_orthanc_config_windows.lua +455 -455
  255. openrem/sample-config/queue-init.bat +73 -73
  256. openrem/scripts/openrem_ctphilips.py +25 -25
  257. openrem/scripts/openrem_cttoshiba.py +28 -28
  258. openrem/scripts/openrem_dx.py +22 -22
  259. openrem/scripts/openrem_mg.py +22 -22
  260. openrem/scripts/openrem_nm.py +22 -22
  261. openrem/scripts/openrem_ptsizecsv.py +17 -17
  262. openrem/scripts/openrem_qr.py +12 -12
  263. openrem/scripts/openrem_rdsr.py +25 -25
  264. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/METADATA +39 -29
  265. openrem-1.0.0b3.dist-info/RECORD +379 -0
  266. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/WHEEL +1 -1
  267. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info/licenses}/COPYING-GPLv3 +674 -674
  268. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info/licenses}/LICENSE +22 -22
  269. OpenREM-1.0.0b2.dist-info/RECORD +0 -373
  270. openrem/remapp/static/js/charts/plotly-2.17.1.min.js +0 -8
  271. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_ctphilips.py +0 -0
  272. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_cttoshiba.py +0 -0
  273. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_dx.py +0 -0
  274. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_mg.py +0 -0
  275. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_nm.py +0 -0
  276. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_ptsizecsv.py +0 -0
  277. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_qr.py +0 -0
  278. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_rdsr.py +0 -0
  279. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/top_level.txt +0 -0
@@ -1,1048 +1,1049 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: PACKAGE VERSION\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2023-04-17 17:58+0100\n"
11
- "PO-Revision-Date: 2020-11-22 15:28+0000\n"
12
- "Last-Translator: Marcelo Sosa <msosa79@outlook.com>\n"
13
- "Language-Team: Spanish (Mexico) <https://hosted.weblate.org/projects/openrem/"
14
- "web-interface/es_MX/>\n"
15
- "Language: es_MX\n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=UTF-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
- "X-Generator: Weblate 4.4-dev\n"
21
-
22
- #: remapp/exports/ct_export.py:176
23
- #, python-brace-format
24
- msgid ""
25
- "Writing study {row} of {numrows} to All data sheet and individual protocol "
26
- "sheets"
27
- msgstr ""
28
- "Escritura del estudio {row} de {numrows} en Todas las hojas de datos y en "
29
- "las de protocolos individuales"
30
-
31
- #: remapp/forms.py:76
32
- msgid "Select a file"
33
- msgstr ""
34
-
35
- #: remapp/forms.py:101
36
- msgid "Accession Number"
37
- msgstr ""
38
-
39
- #: remapp/forms.py:102
40
- msgid "Study instance UID"
41
- msgstr ""
42
-
43
- #: remapp/forms.py:111
44
- msgid "Items per page"
45
- msgstr ""
46
-
47
- #: remapp/forms.py:120 remapp/forms.py:453 remapp/forms.py:1161
48
- msgid "Plot charts?"
49
- msgstr ""
50
-
51
- #: remapp/forms.py:158 remapp/forms.py:311 remapp/forms.py:800
52
- #: remapp/forms.py:886 remapp/forms.py:1011
53
- msgid "Acquisition frequency"
54
- msgstr ""
55
-
56
- #: remapp/forms.py:162 remapp/forms.py:889
57
- msgid "Acquisition DAP"
58
- msgstr ""
59
-
60
- #: remapp/forms.py:166 remapp/forms.py:892
61
- msgid "Acquisition mAs"
62
- msgstr ""
63
-
64
- #: remapp/forms.py:170 remapp/forms.py:895
65
- msgid "Acquisition kVp"
66
- msgstr ""
67
-
68
- #: remapp/forms.py:174 remapp/forms.py:898
69
- msgid "Acquisition DAP over time"
70
- msgstr ""
71
-
72
- #: remapp/forms.py:178 remapp/forms.py:901
73
- msgid "Acquisition mAs over time"
74
- msgstr ""
75
-
76
- #: remapp/forms.py:182 remapp/forms.py:904
77
- msgid "Acquisition kVp over time"
78
- msgstr ""
79
-
80
- #: remapp/forms.py:186 remapp/forms.py:907
81
- msgid "Acquisition DAP vs mass"
82
- msgstr ""
83
-
84
- #: remapp/forms.py:189 remapp/forms.py:455 remapp/forms.py:505
85
- #: remapp/forms.py:622 remapp/forms.py:909 remapp/forms.py:1042
86
- msgid "Study frequency"
87
- msgstr ""
88
-
89
- #: remapp/forms.py:191 remapp/forms.py:623 remapp/forms.py:910
90
- msgid "Study DAP"
91
- msgstr ""
92
-
93
- #: remapp/forms.py:194 remapp/forms.py:912
94
- msgid "Study DAP vs mass"
95
- msgstr ""
96
-
97
- #: remapp/forms.py:198 remapp/forms.py:367 remapp/forms.py:457
98
- #: remapp/forms.py:507 remapp/forms.py:582 remapp/forms.py:628
99
- #: remapp/forms.py:821 remapp/forms.py:915 remapp/forms.py:1052
100
- msgid "Study workload"
101
- msgstr ""
102
-
103
- #: remapp/forms.py:202 remapp/forms.py:372 remapp/forms.py:587
104
- #: remapp/forms.py:631 remapp/forms.py:918 remapp/forms.py:1055
105
- msgid "Requested procedure frequency"
106
- msgstr ""
107
-
108
- #: remapp/forms.py:206 remapp/forms.py:591 remapp/forms.py:634
109
- #: remapp/forms.py:921
110
- msgid "Requested procedure DAP"
111
- msgstr ""
112
-
113
- #: remapp/forms.py:210 remapp/forms.py:924
114
- msgid "Requested procedure DAP vs mass"
115
- msgstr ""
116
-
117
- #: remapp/forms.py:277 remapp/forms.py:472 remapp/forms.py:538
118
- #: remapp/forms.py:694 remapp/forms.py:1163
119
- msgid "Average plots"
120
- msgstr ""
121
-
122
- #: remapp/forms.py:284 remapp/forms.py:478 remapp/forms.py:549
123
- #: remapp/forms.py:701
124
- msgid "Grouping choice"
125
- msgstr ""
126
-
127
- #: remapp/forms.py:290 remapp/forms.py:483 remapp/forms.py:555
128
- #: remapp/forms.py:707 remapp/forms.py:1174
129
- msgid "Plot a series per system"
130
- msgstr ""
131
-
132
- #: remapp/forms.py:294 remapp/forms.py:486 remapp/forms.py:559
133
- #: remapp/forms.py:711 remapp/forms.py:1177
134
- msgid "Calculate histogram data"
135
- msgstr ""
136
-
137
- #: remapp/forms.py:298 remapp/forms.py:489 remapp/forms.py:522
138
- #: remapp/forms.py:715 remapp/forms.py:827 remapp/forms.py:1070
139
- #, fuzzy
140
- msgid "Chart sorting"
141
- msgstr "Opciones de gráfico"
142
-
143
- #: remapp/forms.py:304 remapp/forms.py:494 remapp/forms.py:567
144
- #: remapp/forms.py:721 remapp/forms.py:1169
145
- msgid "Sorting direction"
146
- msgstr ""
147
-
148
- #: remapp/forms.py:315 remapp/forms.py:1014
149
- msgid "Acquisition DLP"
150
- msgstr ""
151
-
152
- #: remapp/forms.py:319 remapp/forms.py:1017
153
- msgid "Acquisition CTDI<sub>vol</sub>"
154
- msgstr ""
155
-
156
- #: remapp/forms.py:323 remapp/forms.py:1020
157
- msgid "Acquisition DLP over time"
158
- msgstr ""
159
-
160
- #: remapp/forms.py:327 remapp/forms.py:1023
161
- msgid "Acquisition CTDI<sub>vol</sub> over time"
162
- msgstr ""
163
-
164
- #: remapp/forms.py:332 remapp/forms.py:1027
165
- msgid "Acquisition DLP vs mass"
166
- msgstr ""
167
-
168
- #: remapp/forms.py:336
169
- msgid "Acquisition CTDI<sub>vol</sub> vs mass"
170
- msgstr ""
171
-
172
- #: remapp/forms.py:343 remapp/forms.py:1035
173
- msgid ""
174
- "Acquisition types to include<br/>in acquisition-level chart<br/>calculations"
175
- msgstr ""
176
-
177
- #: remapp/forms.py:357 remapp/forms.py:1045
178
- msgid "Study CTDI<sub>vol</sub>"
179
- msgstr ""
180
-
181
- #: remapp/forms.py:363 remapp/forms.py:1049
182
- msgid "Study DLP over time"
183
- msgstr ""
184
-
185
- #: remapp/forms.py:376 remapp/forms.py:1058
186
- msgid "Requested procedure DLP"
187
- msgstr ""
188
-
189
- #: remapp/forms.py:380 remapp/forms.py:1061
190
- msgid "Requested procedure events"
191
- msgstr ""
192
-
193
- #: remapp/forms.py:384 remapp/forms.py:1064
194
- msgid "Requested procedure DLP over time"
195
- msgstr ""
196
-
197
- #: remapp/forms.py:460
198
- msgid "Injected dose per study"
199
- msgstr ""
200
-
201
- #: remapp/forms.py:463
202
- msgid "Injected dose over time"
203
- msgstr ""
204
-
205
- #: remapp/forms.py:466
206
- msgid "Injected dose vs mass"
207
- msgstr ""
208
-
209
- #: remapp/forms.py:469 remapp/forms.py:519 remapp/forms.py:640
210
- #: remapp/forms.py:690 remapp/forms.py:824 remapp/forms.py:927
211
- #: remapp/forms.py:1067
212
- msgid "Time period"
213
- msgstr ""
214
-
215
- #: remapp/forms.py:510
216
- msgid "Injected Dose per Study"
217
- msgstr ""
218
-
219
- #: remapp/forms.py:513
220
- msgid "Injected Dose over Time"
221
- msgstr ""
222
-
223
- #: remapp/forms.py:516
224
- msgid "Injected Dose over Weight"
225
- msgstr ""
226
-
227
- #: remapp/forms.py:578 remapp/forms.py:625
228
- msgid "Study DAP over time"
229
- msgstr ""
230
-
231
- #: remapp/forms.py:595 remapp/forms.py:637
232
- msgid "Requested procedure DAP over time"
233
- msgstr ""
234
-
235
- #: remapp/forms.py:643
236
- msgid "Split plots by physician"
237
- msgstr ""
238
-
239
- #: remapp/forms.py:646 remapp/forms.py:930
240
- msgid "Default chart sorting"
241
- msgstr ""
242
-
243
- #: remapp/forms.py:803
244
- msgid "Acquisition average AGD"
245
- msgstr ""
246
-
247
- #: remapp/forms.py:806
248
- msgid "Acquisition average AGD vs. compressed thickness"
249
- msgstr ""
250
-
251
- #: remapp/forms.py:809
252
- msgid "Acquisition AGD over time"
253
- msgstr ""
254
-
255
- #: remapp/forms.py:812
256
- msgid "Acquisition AGD vs. compressed thickness"
257
- msgstr ""
258
-
259
- #: remapp/forms.py:815
260
- msgid "Acquisition mAs vs. compressed thickness"
261
- msgstr ""
262
-
263
- #: remapp/forms.py:818
264
- msgid "Acquisition kVp vs. compressed thickness"
265
- msgstr ""
266
-
267
- #: remapp/forms.py:1030
268
- msgid "Acquisition CTDI vs mass"
269
- msgstr ""
270
-
271
- #: remapp/forms.py:1043
272
- msgid "Study DLP"
273
- msgstr ""
274
-
275
- #: remapp/forms.py:1047
276
- msgid "Study events"
277
- msgstr ""
278
-
279
- #: remapp/forms.py:1180
280
- msgid "Number of histogram bins"
281
- msgstr ""
282
-
283
- #: remapp/forms.py:1183
284
- msgid "Fixed histogram bins across subplots"
285
- msgstr ""
286
-
287
- #: remapp/forms.py:1186
288
- msgid "Case-insensitive categories"
289
- msgstr ""
290
-
291
- #: remapp/forms.py:1189
292
- msgid "Remove category whitespace padding"
293
- msgstr ""
294
-
295
- #: remapp/forms.py:1192
296
- msgid "Chart label character wrap length"
297
- msgstr ""
298
-
299
- #: remapp/forms.py:1198
300
- #, fuzzy
301
- msgid "Chart grouping"
302
- msgstr "Opciones de gráfico"
303
-
304
- #: remapp/forms.py:1203
305
- msgid "Chart theme"
306
- msgstr ""
307
-
308
- #: remapp/forms.py:1206
309
- msgid "Colour map choice"
310
- msgstr ""
311
-
312
- #: remapp/forms.py:1212
313
- msgid "Number of sub-charts per row"
314
- msgstr ""
315
-
316
- #: remapp/forms.py:1284
317
- msgid "Primary time period to sum studies (days)"
318
- msgstr ""
319
-
320
- #: remapp/forms.py:1287
321
- msgid "Secondary time period to sum studies (days)"
322
- msgstr ""
323
-
324
- #: remapp/forms.py:1290
325
- msgid "Enable calculation and display of workload stats on home page?"
326
- msgstr ""
327
-
328
- #: remapp/forms.py:1300
329
- msgid "Set Display Name and Modality type if Device Observer UID is matching"
330
- msgstr ""
331
-
332
- #: remapp/forms.py:1312 remapp/templates/base.html:52 remapp/views.py:890
333
- msgid "CT"
334
- msgstr "CT"
335
-
336
- #: remapp/forms.py:1313
337
- #, fuzzy
338
- msgid "Fluoroscopy (XA and RF)"
339
- msgstr "Fluoroscopía"
340
-
341
- #: remapp/forms.py:1314
342
- msgid "DX, including CR"
343
- msgstr ""
344
-
345
- #: remapp/forms.py:1315 remapp/templates/base.html:60 remapp/views.py:894
346
- msgid "Mammography"
347
- msgstr "Mamografía"
348
-
349
- #: remapp/forms.py:1316 remapp/views.py:898
350
- msgid "Nuclear Medicine"
351
- msgstr ""
352
-
353
- #: remapp/forms.py:1326
354
- msgid "Date from"
355
- msgstr ""
356
-
357
- #: remapp/forms.py:1330 remapp/forms.py:1336
358
- msgid "Format yyyy-mm-dd, restrict as much as possible for best results"
359
- msgstr ""
360
-
361
- #: remapp/forms.py:1333
362
- msgid "Date until"
363
- msgstr ""
364
-
365
- #: remapp/forms.py:1344
366
- msgid ""
367
- "At least one modality must be ticked - if SR only is ticked (Advanced) these "
368
- "modalities will be ignored"
369
- msgstr ""
370
-
371
- #: remapp/forms.py:1350
372
- msgid "Include SR only studies?"
373
- msgstr ""
374
-
375
- #: remapp/forms.py:1354
376
- msgid "Only use with stores containing only RDSRs, with no accompanying images"
377
- msgstr ""
378
-
379
- #: remapp/forms.py:1358
380
- #, fuzzy
381
- msgid "Ignore studies already in the database?"
382
- msgstr ""
383
- "Comprobando si ya hay alguna respuesta de estudios en la base de datos de "
384
- "OpenREM"
385
-
386
- #: remapp/forms.py:1362
387
- msgid ""
388
- "Objects that have already been processed won't be imported, so there isn't "
389
- "any point getting them!"
390
- msgstr ""
391
-
392
- #: remapp/forms.py:1368
393
- msgid "Exclude studies with these terms in the study description:"
394
- msgstr ""
395
-
396
- #: remapp/forms.py:1369 remapp/forms.py:1374
397
- msgid "Comma separated list of terms"
398
- msgstr ""
399
-
400
- #: remapp/forms.py:1373
401
- msgid "Only keep studies with these terms in the study description:"
402
- msgstr ""
403
-
404
- #: remapp/forms.py:1378
405
- msgid "Exclude studies or series with these terms in the station name:"
406
- msgstr ""
407
-
408
- #: remapp/forms.py:1380 remapp/forms.py:1387
409
- msgid "Comma separated list of terms, tested at series level — see Advanced"
410
- msgstr ""
411
-
412
- #: remapp/forms.py:1385
413
- msgid "Only keep studies or series with these terms in the station name:"
414
- msgstr ""
415
-
416
- #: remapp/forms.py:1391
417
- msgid "Attempt to get Toshiba dose images"
418
- msgstr ""
419
-
420
- #: remapp/forms.py:1394
421
- msgid "Only applicable if using Toshiba RDSR generator extension, see docs"
422
- msgstr ""
423
-
424
- #: remapp/forms.py:1398
425
- msgid "Get SR series that return nothing at image level query"
426
- msgstr ""
427
-
428
- #: remapp/forms.py:1399
429
- msgid "Only use if suggested in qrscu log, see docs"
430
- msgstr ""
431
-
432
- #: remapp/forms.py:1403
433
- msgid "Check station name include/exclude at study level"
434
- msgstr ""
435
-
436
- #: remapp/forms.py:1404
437
- msgid "Default from v1.0 is to check at series level only"
438
- msgstr ""
439
-
440
- #: remapp/interface/chart_functions.py:356
441
- msgid "No data left after excluding missing values."
442
- msgstr ""
443
-
444
- #: remapp/netdicom/qrscu.py:177
445
- msgid ""
446
- "Checking to see if any response studies are already in the OpenREM database"
447
- msgstr ""
448
- "Comprobando si ya hay alguna respuesta de estudios en la base de datos de "
449
- "OpenREM"
450
-
451
- #: remapp/netdicom/qrscu.py:270
452
- #, python-brace-format
453
- msgid ""
454
- "Filter at {level} level on {filter_name} that {filter_type} {filter_list}"
455
- msgstr ""
456
- "Filtrar en {level} nivel en {filter_name} ese {filter_type} {filter_list}"
457
-
458
- #: remapp/netdicom/qrscu.py:342
459
- msgid ""
460
- "Getting series and image level information and deleting series we can't use"
461
- msgstr ""
462
- "Obtener información a nivel de series e imágenes y eliminar las series que "
463
- "no podemos usar"
464
-
465
- #: remapp/netdicom/qrscu.py:959
466
- msgid "Association aborted twice in succession. Aborting query"
467
- msgstr ""
468
-
469
- #: remapp/netdicom/qrscu.py:961
470
- msgid "Association rejected after being aborted. Aborting query"
471
- msgstr ""
472
-
473
- #: remapp/netdicom/qrscu.py:963
474
- msgid "Association failed. Aborting query."
475
- msgstr ""
476
-
477
- #: remapp/netdicom/qrscu.py:985
478
- #, python-brace-format
479
- msgid "{result_type} (0x{status:04x}) - {result_status}. See logs for details."
480
- msgstr ""
481
-
482
- #: remapp/netdicom/qrscu.py:1049
483
- msgid "Image level matching for this study is complete (there many be more)"
484
- msgstr ""
485
- "La coincidencia a nivel de imagen para este estudio esta completa (hay "
486
- "muchas más)"
487
-
488
- #: remapp/netdicom/qrscu.py:1067
489
- msgid "Image level matches are continuing."
490
- msgstr "Continúan las coincidencias de nivel de imagen."
491
-
492
- #: remapp/netdicom/qrscu.py:1107 remapp/netdicom/qrscu.py:1225
493
- #: remapp/netdicom/qrscu.py:1342
494
- msgid "Connection timed out, was aborted or received invalid response"
495
- msgstr ""
496
- "Se agoto el tiempo de espera para la conexión, se cancelo o recibió una "
497
- "respuesta no válida"
498
-
499
- #: remapp/netdicom/qrscu.py:1161
500
- msgid "Series level matching for this study is complete (there may be more)"
501
- msgstr ""
502
- "El emparejamiento a nivel de series para este estudio esta completo (puede "
503
- "haber más)"
504
-
505
- #: remapp/netdicom/qrscu.py:1170
506
- msgid "Series level matches are continuing."
507
- msgstr "Los emparejamientos a nivel de series continúan."
508
-
509
- #: remapp/netdicom/qrscu.py:1272
510
- #, python-brace-format
511
- msgid "Study level matching for {modalities} is complete"
512
- msgstr "El emparejamiento a nivel de estudios para {modalities} esta completo"
513
-
514
- #: remapp/netdicom/qrscu.py:1284
515
- #, python-brace-format
516
- msgid "Matches are continuing for {modalities} studies"
517
- msgstr "Se continúan los emparejamientos para los estudios {modalities}"
518
-
519
- #: remapp/netdicom/qrscu.py:1371
520
- #, python-brace-format
521
- msgid "Currently querying for {modality} studies…"
522
- msgstr "Actualmente solicitando estudios de {modality}…"
523
-
524
- #: remapp/netdicom/qrscu.py:1781
525
- msgid "Pruning study responses based on inc/exc options"
526
- msgstr "Podando los estudios basados en las opciones en inc/exc"
527
-
528
- #: remapp/netdicom/qrscu.py:1806
529
- msgid "Querying at series level to get more details about studies"
530
- msgstr ""
531
- "Consultando a nivel de series para obtener más detalles sobre los estudios"
532
-
533
- #: remapp/netdicom/qrscu.py:1830
534
- msgid "Deleting studies we didn't ask for"
535
- msgstr "Borrando los estudios que no solicitamos"
536
-
537
- #: remapp/netdicom/qrscu.py:1867
538
- msgid "Pruning series responses"
539
- msgstr "Podando las respuestas de las series"
540
-
541
- #: remapp/netdicom/qrscu.py:1895
542
- #, python-brace-format
543
- msgid ""
544
- "{num_del_studies} RF studies were deleted from query due to no suitable RDSR "
545
- "being found. "
546
- msgstr ""
547
-
548
- #: remapp/netdicom/qrscu.py:1901
549
- #, python-brace-format
550
- msgid ""
551
- "{ct_del_studies} CT studies were deleted from query due to no suitable "
552
- "images or reports being found. Of the remaining CT studies, {kept_ct_sr} "
553
- "have RDSR or ESR, {kept_ct_philips} have Philips dose images, "
554
- "{kept_ct_toshiba} have been prepared for the Toshiba import option and "
555
- "{kept_ct_maybe_philips} have been prepared as possibly containing Philips "
556
- "dose images. "
557
- msgstr ""
558
-
559
- #: remapp/netdicom/qrscu.py:1914
560
- #, python-brace-format
561
- msgid ""
562
- "{del_sr_studies} SR studies were deleted from query due to no suitable SR "
563
- "being found. "
564
- msgstr ""
565
-
566
- #: remapp/netdicom/qrscu.py:1933
567
- msgid "Removing any responses that match data we already have in the database"
568
- msgstr ""
569
- "Eliminar cualquier respuesta que coincida con los datos que ya tenemos en la "
570
- "base de datos"
571
-
572
- #: remapp/netdicom/qrscu.py:1962
573
- #, python-brace-format
574
- msgid ""
575
- "Query complete. Query took {time} and we are left with {studies_left} "
576
- "studies to move.<br>Of the original {studies_initial} study responses, "
577
- msgstr ""
578
- "Consulta completada. La consulta tomó {time} y nos quedan {studies_left} "
579
- "estudios para mover.<br>De las respuestas originales del estudio "
580
- "{studies_initial}, "
581
-
582
- #: remapp/netdicom/qrscu.py:1976
583
- #, python-brace-format
584
- msgid ""
585
- "only studies with description that include '{text}' removed {num} studies, "
586
- msgstr ""
587
- "solo estudios cuya descripción incluya '{text}' eliminaron {num} estudios, "
588
-
589
- #: remapp/netdicom/qrscu.py:1983
590
- #, python-brace-format
591
- msgid ""
592
- "studies with description that do not include '{text}' removed {num} studies, "
593
- msgstr ""
594
- "estudios cuya descripción no incluya '{text}' eliminaron {num} estudios, "
595
-
596
- #: remapp/netdicom/qrscu.py:1990
597
- #, fuzzy, python-brace-format
598
- msgid ""
599
- "only studies with station names that include '{text}' at {filter_level} "
600
- "level removed {num} studies, "
601
- msgstr ""
602
- "solo estudios cuya descripción incluya '{text}' eliminaron {num} estudios, "
603
-
604
- #: remapp/netdicom/qrscu.py:1999
605
- #, fuzzy, python-brace-format
606
- msgid ""
607
- "studies with station names that do not include '{text}' at {filter_level} "
608
- "level removed {num} studies, "
609
- msgstr ""
610
- "estudios cuya descripción no incluya '{text}' eliminaron {num} estudios, "
611
-
612
- #: remapp/netdicom/qrscu.py:2008
613
- #, python-brace-format
614
- msgid "<br>Filtering for {pruning_logs}."
615
- msgstr ""
616
-
617
- #: remapp/netdicom/qrscu.py:2014
618
- #, fuzzy, python-brace-format
619
- msgid ""
620
- "<br>Removing duplicates of previous objects removed {duplicates_removed} "
621
- "studies."
622
- msgstr ""
623
- "La eliminación de duplicados de objetos anteriores elimino estudios de "
624
- "{duplicates_removed}."
625
-
626
- #: remapp/netdicom/qrscu.py:2020
627
- #, python-brace-format
628
- msgid "<br>The following errors were received: {errors}"
629
- msgstr ""
630
-
631
- #: remapp/netdicom/qrscu.py:2045
632
- msgid "Association aborted or never connected"
633
- msgstr ""
634
-
635
- #: remapp/netdicom/qrscu.py:2050
636
- msgid "Association Failed"
637
- msgstr ""
638
-
639
- #: remapp/netdicom/tools.py:57
640
- msgid "Store Docker container name is missing"
641
- msgstr ""
642
-
643
- #: remapp/netdicom/tools.py:59
644
- msgid "Store hostname is missing (normally localhost)"
645
- msgstr ""
646
-
647
- #: remapp/templates/base.html:56 remapp/views.py:892
648
- msgid "Fluoroscopy"
649
- msgstr "Fluoroscopía"
650
-
651
- #: remapp/templates/base.html:64 remapp/views.py:896
652
- msgid "Radiography"
653
- msgstr "Radiografía"
654
-
655
- #: remapp/templates/base.html:68
656
- msgid "NM/PET"
657
- msgstr ""
658
-
659
- #: remapp/templates/base.html:80
660
- msgid "Imports"
661
- msgstr "Importaciones"
662
-
663
- #: remapp/templates/base.html:84
664
- #, fuzzy
665
- #| msgid "Previous patient size imports"
666
- msgid "Patient size imports"
667
- msgstr "Importaciones de tamaños de pacientes anteriores"
668
-
669
- #: remapp/templates/base.html:85
670
- msgid "Import patient size info"
671
- msgstr "Importar información del tamaño del paciente"
672
-
673
- #: remapp/templates/base.html:88
674
- msgid "Previous patient size imports"
675
- msgstr "Importaciones de tamaños de pacientes anteriores"
676
-
677
- #: remapp/templates/base.html:92
678
- msgid "DICOM query-retrieve"
679
- msgstr ""
680
-
681
- #: remapp/templates/base.html:93
682
- msgid "Query remote server"
683
- msgstr "Consultar a servidor remoto"
684
-
685
- #: remapp/templates/base.html:94
686
- msgid "Previous queries"
687
- msgstr ""
688
-
689
- #: remapp/templates/base.html:104
690
- msgid "Tasks"
691
- msgstr "Tareas"
692
-
693
- #: remapp/templates/base.html:108
694
- msgid "Exports"
695
- msgstr "Exportaciones"
696
-
697
- #: remapp/templates/base.html:111
698
- msgid "All tasks"
699
- msgstr ""
700
-
701
- #: remapp/templates/base.html:120
702
- msgid "Config"
703
- msgstr "Configuración"
704
-
705
- #: remapp/templates/base.html:123
706
- msgid "User level config"
707
- msgstr "Configuración a nivel de usuario"
708
-
709
- #: remapp/templates/base.html:124
710
- msgid "Chart options"
711
- msgstr "Opciones de gráfico"
712
-
713
- #: remapp/templates/base.html:127
714
- msgid "Switch charts off"
715
- msgstr "Desactivar gráficos"
716
-
717
- #: remapp/templates/base.html:129
718
- msgid "Switch charts on"
719
- msgstr "Habilitar gráficos"
720
-
721
- #: remapp/templates/base.html:133
722
- msgid "View display names & modality"
723
- msgstr "Mostrar visualización de nombres & modalidad"
724
-
725
- #: remapp/templates/base.html:134
726
- msgid "View not-patient indicators"
727
- msgstr "Ver indicadores de no pacientes"
728
-
729
- #: remapp/templates/base.html:138
730
- msgid "Home page options"
731
- msgstr "Opciones de la página de inicio"
732
-
733
- #: remapp/templates/base.html:143
734
- msgid "System level settings"
735
- msgstr "Configuraciones a nivel de sistema"
736
-
737
- #: remapp/templates/base.html:144
738
- msgid "Users"
739
- msgstr "Usuarios"
740
-
741
- #: remapp/templates/base.html:145
742
- msgid "Display names & modality"
743
- msgstr "Mostrar nombres & modalidades"
744
-
745
- #: remapp/templates/base.html:146
746
- msgid "DICOM object deletion"
747
- msgstr "Eliminación de objetos DICOM"
748
-
749
- #: remapp/templates/base.html:147
750
- msgid "DICOM networking"
751
- msgstr "Redes DICOM"
752
-
753
- #: remapp/templates/base.html:148
754
- msgid "Patient ID"
755
- msgstr "Identificación de paciente"
756
-
757
- #: remapp/templates/base.html:149
758
- msgid "Not-patient indicators"
759
- msgstr "Indicadores de no pacientes"
760
-
761
- #: remapp/templates/base.html:150
762
- msgid "Skin dose map"
763
- msgstr "Mapa de dosis en piel"
764
-
765
- #: remapp/templates/base.html:151
766
- msgid "Fluoro alert levels"
767
- msgstr "Alerta de niveles de Fluoroscopía"
768
-
769
- #: remapp/templates/base.html:152
770
- msgid "Fluoro alert notification"
771
- msgstr "Notificación de alerta de Fluoroscopía"
772
-
773
- #: remapp/templates/base.html:153
774
- #, fuzzy
775
- msgid "Standard name settings"
776
- msgstr "Configuraciones a nivel de sistema"
777
-
778
- #: remapp/templates/base.html:155
779
- msgid "Standard name mapping"
780
- msgstr ""
781
-
782
- #: remapp/templates/base.html:157
783
- msgid "Task settings"
784
- msgstr ""
785
-
786
- #: remapp/templates/base.html:172
787
- msgid "User"
788
- msgstr "Usuario"
789
-
790
- #: remapp/templates/base.html:178
791
- msgid "Change password"
792
- msgstr "Cambiar contraseña"
793
-
794
- #: remapp/templates/base.html:179
795
- msgid "Logout"
796
- msgstr "Cerrar sesión"
797
-
798
- #: remapp/templates/base.html:182
799
- msgid "Login"
800
- msgstr "Iniciar sesión"
801
-
802
- #: remapp/templates/base.html:189
803
- msgid "Docs"
804
- msgstr "Documentos"
805
-
806
- #: remapp/templates/base.html:196
807
- msgid "OpenREM documentation - opens in a new tab"
808
- msgstr "Documentación de OpenREM - se abre en una nueva pestaña"
809
-
810
- #: remapp/templates/base.html:197
811
- #, python-format
812
- msgid "OpenREM Documentation (%(docsversion)s)"
813
- msgstr "Documentación de OpenREM (%(docsversion)s)"
814
-
815
- #: remapp/templates/remapp/home-list-modalities.html:7
816
- #: remapp/templates/remapp/home.html:175
817
- msgid "System name"
818
- msgstr "Nombre del sistema"
819
-
820
- #: remapp/templates/remapp/home-list-modalities.html:8
821
- #: remapp/templates/remapp/home.html:176
822
- msgid "Total number of studies"
823
- msgstr "Número total de estudios"
824
-
825
- #: remapp/templates/remapp/home-list-modalities.html:9
826
- #: remapp/templates/remapp/home.html:177
827
- msgid "Latest study"
828
- msgstr "Último estudio"
829
-
830
- #: remapp/templates/remapp/home-list-modalities.html:11
831
- #: remapp/templates/remapp/home-list-modalities.html:13
832
- #: remapp/templates/remapp/home.html:179 remapp/templates/remapp/home.html:181
833
- #, python-format
834
- msgid "Number in last %(day_delta)s days"
835
- msgstr "Número en los últimos %(day_delta)s días"
836
-
837
- #: remapp/templates/remapp/home.html:64
838
- #, python-format
839
- msgid ""
840
- "There are %(total_studies)s studies in this database. Page last refreshed on "
841
- "%(current_time)s"
842
- msgstr ""
843
- "Hay un total de %(total_studies)s estudios en esta base de datos. Página "
844
- "actualizada por última vez el %(current_time)s"
845
-
846
- #: remapp/templates/remapp/home.html:69
847
- msgid "Chart plotting on."
848
- msgstr "Trazado de gráficos activado."
849
-
850
- #: remapp/templates/remapp/home.html:71
851
- msgid "Chart plotting off."
852
- msgstr "Trazado de gráficos desactivado."
853
-
854
- #: remapp/templates/remapp/home.html:187
855
- msgid "Please wait - querying the database"
856
- msgstr "Por favor espere - consultando a la base de datos"
857
-
858
- #: remapp/templates/remapp/openskinsafelist_add.html:52
859
- #: remapp/templates/remapp/openskinsafelist_confirm_delete.html:95
860
- #: remapp/templates/remapp/openskinsafelist_form.html:62
861
- msgid "Only users in the Admin group can modify the openSkin safe list."
862
- msgstr ""
863
-
864
- #: remapp/templates/remapp/openskinsafelist_add.html:54
865
- #: remapp/templates/remapp/openskinsafelist_confirm_delete.html:97
866
- #: remapp/templates/remapp/openskinsafelist_form.html:64
867
- msgid "Skin dose map settings do not allow safelist to be updated"
868
- msgstr ""
869
-
870
- #: remapp/views_charts_ct.py:888
871
- msgid ""
872
- "<br/>This may be because there are no acquisition types selected in the "
873
- "chart options. Try selecting at least one acquisition type."
874
- msgstr ""
875
-
876
- #: remapp/views_charts_nm.py:89
877
- msgid "Chart of study description frequency"
878
- msgstr ""
879
-
880
- #: remapp/views_charts_nm.py:96
881
- msgid "Chart of study description workload"
882
- msgstr ""
883
-
884
- #: remapp/views_charts_nm.py:104
885
- msgid "Chart of injected dose per study mean"
886
- msgstr ""
887
-
888
- #: remapp/views_charts_nm.py:111
889
- msgid "Chart of injected dose per study median"
890
- msgstr ""
891
-
892
- #: remapp/views_charts_nm.py:118
893
- msgid "Boxplot of injected dose per study"
894
- msgstr ""
895
-
896
- #: remapp/views_charts_nm.py:125
897
- msgid "Histogram of injected dose per study"
898
- msgstr ""
899
-
900
- #: remapp/views_charts_nm.py:134
901
- #, python-brace-format
902
- msgid "Chart of injected dose mean over time ({time_period})"
903
- msgstr ""
904
-
905
- #: remapp/views_charts_nm.py:143
906
- #, python-brace-format
907
- msgid "Chart of injected dose median over time ({time_period})"
908
- msgstr ""
909
-
910
- #: remapp/views_charts_nm.py:158
911
- msgid "Chart of injected dose versus patient weight"
912
- msgstr ""
913
-
914
- #: remapp/views_charts_nm.py:302 remapp/views_charts_nm.py:361
915
- #: remapp/views_charts_nm.py:394 remapp/views_charts_nm.py:439
916
- #: remapp/views_charts_nm.py:459 remapp/views_charts_nm.py:496
917
- #: remapp/views_charts_nm.py:507
918
- msgid "Study description"
919
- msgstr ""
920
-
921
- #: remapp/views_charts_nm.py:304 remapp/views_charts_nm.py:464
922
- #: remapp/views_charts_nm.py:498
923
- #, fuzzy
924
- msgid "System"
925
- msgstr "Nombre del sistema"
926
-
927
- #: remapp/views_charts_nm.py:307
928
- msgid "OpenREM NM study description frequency"
929
- msgstr ""
930
-
931
- #: remapp/views_charts_nm.py:334
932
- msgid "Weekday"
933
- msgstr ""
934
-
935
- #: remapp/views_charts_nm.py:335
936
- msgid "Frequency"
937
- msgstr ""
938
-
939
- #: remapp/views_charts_nm.py:337
940
- msgid "OpenREM NM study description workload"
941
- msgstr ""
942
-
943
- #: remapp/views_charts_nm.py:364
944
- msgid "Patient mass (kg)"
945
- msgstr ""
946
-
947
- #: remapp/views_charts_nm.py:365
948
- msgid "Administed Activity (MBq)"
949
- msgstr ""
950
-
951
- #: remapp/views_charts_nm.py:366
952
- msgid "OpenREM Nuclear Medicine Dose vs patient mass"
953
- msgstr ""
954
-
955
- #: remapp/views_charts_nm.py:405
956
- msgid "Mean Injected Dose (MBq)"
957
- msgstr ""
958
-
959
- #: remapp/views_charts_nm.py:407
960
- msgid "OpenREM nuclear medicine study injected dose mean"
961
- msgstr ""
962
-
963
- #: remapp/views_charts_nm.py:420
964
- msgid "Median Injected Dose (MBq)"
965
- msgstr ""
966
-
967
- #: remapp/views_charts_nm.py:422
968
- msgid "OpenREM nuclear medicine study injected dose median"
969
- msgstr ""
970
-
971
- #: remapp/views_charts_nm.py:438 remapp/views_charts_nm.py:470
972
- msgid "Injected Dose (MBq)"
973
- msgstr ""
974
-
975
- #: remapp/views_charts_nm.py:441
976
- msgid "OpenREM nuclear medicine study injected dose boxplot"
977
- msgstr ""
978
-
979
- #: remapp/views_charts_nm.py:474
980
- msgid "OpenREM nuclear medicine study injected dose histogram"
981
- msgstr ""
982
-
983
- #: remapp/views_charts_nm.py:508
984
- msgid "Administered Dose (MBq)"
985
- msgstr ""
986
-
987
- #: remapp/views_charts_nm.py:509
988
- msgid "Study date"
989
- msgstr ""
990
-
991
- #: remapp/views_charts_nm.py:520
992
- msgid "OpenREM Nuclear medicine injected dose over time"
993
- msgstr ""
994
-
995
- #: remapp/views_openskin.py:192
996
- msgid "Skin dose map settings have been updated"
997
- msgstr ""
998
-
999
- #: remapp/views_openskin.py:195
1000
- msgid "No changes made"
1001
- msgstr ""
1002
-
1003
- #: remapp/views_openskin.py:245 remapp/views_openskin.py:315
1004
- #: remapp/views_openskin.py:372
1005
- msgid "Skin dose map set to not allow safelist modification"
1006
- msgstr ""
1007
-
1008
- #: remapp/views_openskin.py:255 remapp/views_openskin.py:323
1009
- #: remapp/views_openskin.py:382
1010
- msgid "Only members of the admin group can change the openSkin safe list"
1011
- msgstr ""
1012
-
1013
- #~ msgid ""
1014
- #~ "only studies with station names that include '{text}' removed {num} "
1015
- #~ "studies, "
1016
- #~ msgstr ""
1017
- #~ "solo estudios con nombre de estación que incluya '{text}' eliminaron "
1018
- #~ "{num} estudios, "
1019
-
1020
- #~ msgid ""
1021
- #~ "studies with station names that do not include '{text}' removed {num} "
1022
- #~ "studies, "
1023
- #~ msgstr ""
1024
- #~ "estudios con nombre de estación que no incluyan '{text}' eliminaron {num} "
1025
- #~ "estudios, "
1026
-
1027
- #~ msgid ""
1028
- #~ "Removing duplicates of previous objects removed {duplicates_removed} "
1029
- #~ "studies."
1030
- #~ msgstr ""
1031
- #~ "La eliminación de duplicados de objetos anteriores elimino estudios de "
1032
- #~ "{duplicates_removed}."
1033
-
1034
- #, fuzzy
1035
- #~ msgid ""
1036
- #~ "only studies at {filter_level} level with station names that include "
1037
- #~ "'{text}' removed {num} studies, "
1038
- #~ msgstr ""
1039
- #~ "solo estudios con nombre de estación que incluya '{text}' eliminaron "
1040
- #~ "{num} estudios, "
1041
-
1042
- #, fuzzy
1043
- #~ msgid ""
1044
- #~ "studies at {filter_level} level with station names that do not include "
1045
- #~ "'{text}' removed {num} studies, "
1046
- #~ msgstr ""
1047
- #~ "estudios con nombre de estación que no incluyan '{text}' eliminaron {num} "
1048
- #~ "estudios, "
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PACKAGE VERSION\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2024-09-22 20:30+0100\n"
11
+ "PO-Revision-Date: 2020-11-22 15:28+0000\n"
12
+ "Last-Translator: Marcelo Sosa <msosa79@outlook.com>\n"
13
+ "Language-Team: Spanish (Mexico) <https://hosted.weblate.org/projects/openrem/"
14
+ "web-interface/es_MX/>\n"
15
+ "Language: es_MX\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+ "X-Generator: Weblate 4.4-dev\n"
21
+
22
+ #: .\remapp\exports\ct_export.py:176
23
+ #, python-brace-format
24
+ msgid ""
25
+ "Writing study {row} of {numrows} to All data sheet and individual protocol "
26
+ "sheets"
27
+ msgstr ""
28
+ "Escritura del estudio {row} de {numrows} en Todas las hojas de datos y en "
29
+ "las de protocolos individuales"
30
+
31
+ #: .\remapp\forms.py:76
32
+ msgid "Select a file"
33
+ msgstr ""
34
+
35
+ #: .\remapp\forms.py:101
36
+ msgid "Accession Number"
37
+ msgstr ""
38
+
39
+ #: .\remapp\forms.py:102
40
+ msgid "Study instance UID"
41
+ msgstr ""
42
+
43
+ #: .\remapp\forms.py:111
44
+ msgid "Items per page"
45
+ msgstr ""
46
+
47
+ #: .\remapp\forms.py:120 .\remapp\forms.py:453 .\remapp\forms.py:1161
48
+ msgid "Plot charts?"
49
+ msgstr ""
50
+
51
+ #: .\remapp\forms.py:158 .\remapp\forms.py:311 .\remapp\forms.py:800
52
+ #: .\remapp\forms.py:886 .\remapp\forms.py:1011
53
+ msgid "Acquisition frequency"
54
+ msgstr ""
55
+
56
+ #: .\remapp\forms.py:162 .\remapp\forms.py:889
57
+ msgid "Acquisition DAP"
58
+ msgstr ""
59
+
60
+ #: .\remapp\forms.py:166 .\remapp\forms.py:892
61
+ msgid "Acquisition mAs"
62
+ msgstr ""
63
+
64
+ #: .\remapp\forms.py:170 .\remapp\forms.py:895
65
+ msgid "Acquisition kVp"
66
+ msgstr ""
67
+
68
+ #: .\remapp\forms.py:174 .\remapp\forms.py:898
69
+ msgid "Acquisition DAP over time"
70
+ msgstr ""
71
+
72
+ #: .\remapp\forms.py:178 .\remapp\forms.py:901
73
+ msgid "Acquisition mAs over time"
74
+ msgstr ""
75
+
76
+ #: .\remapp\forms.py:182 .\remapp\forms.py:904
77
+ msgid "Acquisition kVp over time"
78
+ msgstr ""
79
+
80
+ #: .\remapp\forms.py:186 .\remapp\forms.py:907
81
+ msgid "Acquisition DAP vs mass"
82
+ msgstr ""
83
+
84
+ #: .\remapp\forms.py:189 .\remapp\forms.py:455 .\remapp\forms.py:505
85
+ #: .\remapp\forms.py:622 .\remapp\forms.py:909 .\remapp\forms.py:1042
86
+ msgid "Study frequency"
87
+ msgstr ""
88
+
89
+ #: .\remapp\forms.py:191 .\remapp\forms.py:623 .\remapp\forms.py:910
90
+ msgid "Study DAP"
91
+ msgstr ""
92
+
93
+ #: .\remapp\forms.py:194 .\remapp\forms.py:912
94
+ msgid "Study DAP vs mass"
95
+ msgstr ""
96
+
97
+ #: .\remapp\forms.py:198 .\remapp\forms.py:367 .\remapp\forms.py:457
98
+ #: .\remapp\forms.py:507 .\remapp\forms.py:582 .\remapp\forms.py:628
99
+ #: .\remapp\forms.py:821 .\remapp\forms.py:915 .\remapp\forms.py:1052
100
+ msgid "Study workload"
101
+ msgstr ""
102
+
103
+ #: .\remapp\forms.py:202 .\remapp\forms.py:372 .\remapp\forms.py:587
104
+ #: .\remapp\forms.py:631 .\remapp\forms.py:918 .\remapp\forms.py:1055
105
+ msgid "Requested procedure frequency"
106
+ msgstr ""
107
+
108
+ #: .\remapp\forms.py:206 .\remapp\forms.py:591 .\remapp\forms.py:634
109
+ #: .\remapp\forms.py:921
110
+ msgid "Requested procedure DAP"
111
+ msgstr ""
112
+
113
+ #: .\remapp\forms.py:210 .\remapp\forms.py:924
114
+ msgid "Requested procedure DAP vs mass"
115
+ msgstr ""
116
+
117
+ #: .\remapp\forms.py:277 .\remapp\forms.py:472 .\remapp\forms.py:538
118
+ #: .\remapp\forms.py:694 .\remapp\forms.py:1163
119
+ msgid "Average plots"
120
+ msgstr ""
121
+
122
+ #: .\remapp\forms.py:284 .\remapp\forms.py:478 .\remapp\forms.py:549
123
+ #: .\remapp\forms.py:701
124
+ msgid "Grouping choice"
125
+ msgstr ""
126
+
127
+ #: .\remapp\forms.py:290 .\remapp\forms.py:483 .\remapp\forms.py:555
128
+ #: .\remapp\forms.py:707 .\remapp\forms.py:1174
129
+ msgid "Plot a series per system"
130
+ msgstr ""
131
+
132
+ #: .\remapp\forms.py:294 .\remapp\forms.py:486 .\remapp\forms.py:559
133
+ #: .\remapp\forms.py:711 .\remapp\forms.py:1177
134
+ msgid "Calculate histogram data"
135
+ msgstr ""
136
+
137
+ #: .\remapp\forms.py:298 .\remapp\forms.py:489 .\remapp\forms.py:522
138
+ #: .\remapp\forms.py:715 .\remapp\forms.py:827 .\remapp\forms.py:1070
139
+ #, fuzzy
140
+ msgid "Chart sorting"
141
+ msgstr "Opciones de gráfico"
142
+
143
+ #: .\remapp\forms.py:304 .\remapp\forms.py:494 .\remapp\forms.py:567
144
+ #: .\remapp\forms.py:721 .\remapp\forms.py:1169
145
+ msgid "Sorting direction"
146
+ msgstr ""
147
+
148
+ #: .\remapp\forms.py:315 .\remapp\forms.py:1014
149
+ msgid "Acquisition DLP"
150
+ msgstr ""
151
+
152
+ #: .\remapp\forms.py:319 .\remapp\forms.py:1017
153
+ msgid "Acquisition CTDI<sub>vol</sub>"
154
+ msgstr ""
155
+
156
+ #: .\remapp\forms.py:323 .\remapp\forms.py:1020
157
+ msgid "Acquisition DLP over time"
158
+ msgstr ""
159
+
160
+ #: .\remapp\forms.py:327 .\remapp\forms.py:1023
161
+ msgid "Acquisition CTDI<sub>vol</sub> over time"
162
+ msgstr ""
163
+
164
+ #: .\remapp\forms.py:332 .\remapp\forms.py:1027
165
+ msgid "Acquisition DLP vs mass"
166
+ msgstr ""
167
+
168
+ #: .\remapp\forms.py:336
169
+ msgid "Acquisition CTDI<sub>vol</sub> vs mass"
170
+ msgstr ""
171
+
172
+ #: .\remapp\forms.py:343 .\remapp\forms.py:1035
173
+ msgid ""
174
+ "Acquisition types to include<br/>in acquisition-level chart<br/>calculations"
175
+ msgstr ""
176
+
177
+ #: .\remapp\forms.py:357 .\remapp\forms.py:1045
178
+ msgid "Study CTDI<sub>vol</sub>"
179
+ msgstr ""
180
+
181
+ #: .\remapp\forms.py:363 .\remapp\forms.py:1049
182
+ msgid "Study DLP over time"
183
+ msgstr ""
184
+
185
+ #: .\remapp\forms.py:376 .\remapp\forms.py:1058
186
+ msgid "Requested procedure DLP"
187
+ msgstr ""
188
+
189
+ #: .\remapp\forms.py:380 .\remapp\forms.py:1061
190
+ msgid "Requested procedure events"
191
+ msgstr ""
192
+
193
+ #: .\remapp\forms.py:384 .\remapp\forms.py:1064
194
+ msgid "Requested procedure DLP over time"
195
+ msgstr ""
196
+
197
+ #: .\remapp\forms.py:460
198
+ msgid "Injected dose per study"
199
+ msgstr ""
200
+
201
+ #: .\remapp\forms.py:463
202
+ msgid "Injected dose over time"
203
+ msgstr ""
204
+
205
+ #: .\remapp\forms.py:466
206
+ msgid "Injected dose vs mass"
207
+ msgstr ""
208
+
209
+ #: .\remapp\forms.py:469 .\remapp\forms.py:519 .\remapp\forms.py:640
210
+ #: .\remapp\forms.py:690 .\remapp\forms.py:824 .\remapp\forms.py:927
211
+ #: .\remapp\forms.py:1067
212
+ msgid "Time period"
213
+ msgstr ""
214
+
215
+ #: .\remapp\forms.py:510
216
+ msgid "Injected Dose per Study"
217
+ msgstr ""
218
+
219
+ #: .\remapp\forms.py:513
220
+ msgid "Injected Dose over Time"
221
+ msgstr ""
222
+
223
+ #: .\remapp\forms.py:516
224
+ msgid "Injected Dose over Weight"
225
+ msgstr ""
226
+
227
+ #: .\remapp\forms.py:578 .\remapp\forms.py:625
228
+ msgid "Study DAP over time"
229
+ msgstr ""
230
+
231
+ #: .\remapp\forms.py:595 .\remapp\forms.py:637
232
+ msgid "Requested procedure DAP over time"
233
+ msgstr ""
234
+
235
+ #: .\remapp\forms.py:643
236
+ msgid "Split plots by physician"
237
+ msgstr ""
238
+
239
+ #: .\remapp\forms.py:646 .\remapp\forms.py:930
240
+ msgid "Default chart sorting"
241
+ msgstr ""
242
+
243
+ #: .\remapp\forms.py:803
244
+ msgid "Acquisition average AGD"
245
+ msgstr ""
246
+
247
+ #: .\remapp\forms.py:806
248
+ msgid "Acquisition average AGD vs. compressed thickness"
249
+ msgstr ""
250
+
251
+ #: .\remapp\forms.py:809
252
+ msgid "Acquisition AGD over time"
253
+ msgstr ""
254
+
255
+ #: .\remapp\forms.py:812
256
+ msgid "Acquisition AGD vs. compressed thickness"
257
+ msgstr ""
258
+
259
+ #: .\remapp\forms.py:815
260
+ msgid "Acquisition mAs vs. compressed thickness"
261
+ msgstr ""
262
+
263
+ #: .\remapp\forms.py:818
264
+ msgid "Acquisition kVp vs. compressed thickness"
265
+ msgstr ""
266
+
267
+ #: .\remapp\forms.py:1030
268
+ msgid "Acquisition CTDI vs mass"
269
+ msgstr ""
270
+
271
+ #: .\remapp\forms.py:1043
272
+ msgid "Study DLP"
273
+ msgstr ""
274
+
275
+ #: .\remapp\forms.py:1047
276
+ msgid "Study events"
277
+ msgstr ""
278
+
279
+ #: .\remapp\forms.py:1180
280
+ msgid "Number of histogram bins"
281
+ msgstr ""
282
+
283
+ #: .\remapp\forms.py:1183
284
+ msgid "Fixed histogram bins across subplots"
285
+ msgstr ""
286
+
287
+ #: .\remapp\forms.py:1186
288
+ msgid "Case-insensitive categories"
289
+ msgstr ""
290
+
291
+ #: .\remapp\forms.py:1189
292
+ msgid "Remove category whitespace padding"
293
+ msgstr ""
294
+
295
+ #: .\remapp\forms.py:1192
296
+ msgid "Chart label character wrap length"
297
+ msgstr ""
298
+
299
+ #: .\remapp\forms.py:1198
300
+ #, fuzzy
301
+ msgid "Chart grouping"
302
+ msgstr "Opciones de gráfico"
303
+
304
+ #: .\remapp\forms.py:1203
305
+ msgid "Chart theme"
306
+ msgstr ""
307
+
308
+ #: .\remapp\forms.py:1206
309
+ msgid "Colour map choice"
310
+ msgstr ""
311
+
312
+ #: .\remapp\forms.py:1212
313
+ msgid "Number of sub-charts per row"
314
+ msgstr ""
315
+
316
+ #: .\remapp\forms.py:1284
317
+ msgid "Primary time period to sum studies (days)"
318
+ msgstr ""
319
+
320
+ #: .\remapp\forms.py:1287
321
+ msgid "Secondary time period to sum studies (days)"
322
+ msgstr ""
323
+
324
+ #: .\remapp\forms.py:1290
325
+ msgid "Enable calculation and display of workload stats on home page?"
326
+ msgstr ""
327
+
328
+ #: .\remapp\forms.py:1300
329
+ msgid "Set Display Name and Modality type if Device Observer UID is matching"
330
+ msgstr ""
331
+
332
+ #: .\remapp\forms.py:1312 .\remapp\templates\base.html:52 .\remapp\views.py:985
333
+ msgid "CT"
334
+ msgstr "CT"
335
+
336
+ #: .\remapp\forms.py:1313
337
+ #, fuzzy
338
+ msgid "Fluoroscopy (XA and RF)"
339
+ msgstr "Fluoroscopía"
340
+
341
+ #: .\remapp\forms.py:1314
342
+ msgid "DX, including CR"
343
+ msgstr ""
344
+
345
+ #: .\remapp\forms.py:1315 .\remapp\templates\base.html:60 .\remapp\views.py:989
346
+ msgid "Mammography"
347
+ msgstr "Mamografía"
348
+
349
+ #: .\remapp\forms.py:1316 .\remapp\views.py:994
350
+ msgid "Nuclear Medicine"
351
+ msgstr ""
352
+
353
+ #: .\remapp\forms.py:1326
354
+ msgid "Date from"
355
+ msgstr ""
356
+
357
+ #: .\remapp\forms.py:1330 .\remapp\forms.py:1336
358
+ msgid "Format yyyy-mm-dd, restrict as much as possible for best results"
359
+ msgstr ""
360
+
361
+ #: .\remapp\forms.py:1333
362
+ msgid "Date until"
363
+ msgstr ""
364
+
365
+ #: .\remapp\forms.py:1344
366
+ msgid ""
367
+ "At least one modality must be ticked - if SR only is ticked (Advanced) these "
368
+ "modalities will be ignored"
369
+ msgstr ""
370
+
371
+ #: .\remapp\forms.py:1350
372
+ msgid "Include SR only studies?"
373
+ msgstr ""
374
+
375
+ #: .\remapp\forms.py:1354
376
+ msgid "Only use with stores containing only RDSRs, with no accompanying images"
377
+ msgstr ""
378
+
379
+ #: .\remapp\forms.py:1358
380
+ #, fuzzy
381
+ msgid "Ignore studies already in the database?"
382
+ msgstr ""
383
+ "Comprobando si ya hay alguna respuesta de estudios en la base de datos de "
384
+ "OpenREM"
385
+
386
+ #: .\remapp\forms.py:1362
387
+ msgid ""
388
+ "Objects that have already been processed won't be imported, so there isn't "
389
+ "any point getting them!"
390
+ msgstr ""
391
+
392
+ #: .\remapp\forms.py:1368
393
+ msgid "Exclude studies with these terms in the study description:"
394
+ msgstr ""
395
+
396
+ #: .\remapp\forms.py:1369 .\remapp\forms.py:1374
397
+ msgid "Comma separated list of terms"
398
+ msgstr ""
399
+
400
+ #: .\remapp\forms.py:1373
401
+ msgid "Only keep studies with these terms in the study description:"
402
+ msgstr ""
403
+
404
+ #: .\remapp\forms.py:1378
405
+ msgid "Exclude studies or series with these terms in the station name:"
406
+ msgstr ""
407
+
408
+ #: .\remapp\forms.py:1380 .\remapp\forms.py:1387
409
+ msgid "Comma separated list of terms, tested at series level — see Advanced"
410
+ msgstr ""
411
+
412
+ #: .\remapp\forms.py:1385
413
+ msgid "Only keep studies or series with these terms in the station name:"
414
+ msgstr ""
415
+
416
+ #: .\remapp\forms.py:1391
417
+ msgid "Attempt to get Toshiba dose images"
418
+ msgstr ""
419
+
420
+ #: .\remapp\forms.py:1394
421
+ msgid "Only applicable if using Toshiba RDSR generator extension, see docs"
422
+ msgstr ""
423
+
424
+ #: .\remapp\forms.py:1398
425
+ msgid "Get SR series that return nothing at image level query"
426
+ msgstr ""
427
+
428
+ #: .\remapp\forms.py:1399
429
+ msgid "Only use if suggested in qrscu log, see docs"
430
+ msgstr ""
431
+
432
+ #: .\remapp\forms.py:1403
433
+ msgid "Check station name include/exclude at study level"
434
+ msgstr ""
435
+
436
+ #: .\remapp\forms.py:1404
437
+ msgid "Default from v1.0 is to check at series level only"
438
+ msgstr ""
439
+
440
+ #: .\remapp\interface\chart_functions.py:352
441
+ msgid "No data left after excluding missing values."
442
+ msgstr ""
443
+
444
+ #: .\remapp\netdicom\qrscu.py:177
445
+ msgid ""
446
+ "Checking to see if any response studies are already in the OpenREM database"
447
+ msgstr ""
448
+ "Comprobando si ya hay alguna respuesta de estudios en la base de datos de "
449
+ "OpenREM"
450
+
451
+ #: .\remapp\netdicom\qrscu.py:270
452
+ #, python-brace-format
453
+ msgid ""
454
+ "Filter at {level} level on {filter_name} that {filter_type} {filter_list}"
455
+ msgstr ""
456
+ "Filtrar en {level} nivel en {filter_name} ese {filter_type} {filter_list}"
457
+
458
+ #: .\remapp\netdicom\qrscu.py:342
459
+ msgid ""
460
+ "Getting series and image level information and deleting series we can't use"
461
+ msgstr ""
462
+ "Obtener información a nivel de series e imágenes y eliminar las series que "
463
+ "no podemos usar"
464
+
465
+ #: .\remapp\netdicom\qrscu.py:959
466
+ msgid "Association aborted twice in succession. Aborting query"
467
+ msgstr ""
468
+
469
+ #: .\remapp\netdicom\qrscu.py:961
470
+ msgid "Association rejected after being aborted. Aborting query"
471
+ msgstr ""
472
+
473
+ #: .\remapp\netdicom\qrscu.py:963
474
+ msgid "Association failed. Aborting query."
475
+ msgstr ""
476
+
477
+ #: .\remapp\netdicom\qrscu.py:985
478
+ #, python-brace-format
479
+ msgid "{result_type} (0x{status:04x}) - {result_status}. See logs for details."
480
+ msgstr ""
481
+
482
+ #: .\remapp\netdicom\qrscu.py:1049
483
+ msgid "Image level matching for this study is complete (there many be more)"
484
+ msgstr ""
485
+ "La coincidencia a nivel de imagen para este estudio esta completa (hay "
486
+ "muchas más)"
487
+
488
+ #: .\remapp\netdicom\qrscu.py:1067
489
+ msgid "Image level matches are continuing."
490
+ msgstr "Continúan las coincidencias de nivel de imagen."
491
+
492
+ #: .\remapp\netdicom\qrscu.py:1107 .\remapp\netdicom\qrscu.py:1225
493
+ #: .\remapp\netdicom\qrscu.py:1342
494
+ msgid "Connection timed out, was aborted or received invalid response"
495
+ msgstr ""
496
+ "Se agoto el tiempo de espera para la conexión, se cancelo o recibió una "
497
+ "respuesta no válida"
498
+
499
+ #: .\remapp\netdicom\qrscu.py:1161
500
+ msgid "Series level matching for this study is complete (there may be more)"
501
+ msgstr ""
502
+ "El emparejamiento a nivel de series para este estudio esta completo (puede "
503
+ "haber más)"
504
+
505
+ #: .\remapp\netdicom\qrscu.py:1170
506
+ msgid "Series level matches are continuing."
507
+ msgstr "Los emparejamientos a nivel de series continúan."
508
+
509
+ #: .\remapp\netdicom\qrscu.py:1272
510
+ #, python-brace-format
511
+ msgid "Study level matching for {modalities} is complete"
512
+ msgstr "El emparejamiento a nivel de estudios para {modalities} esta completo"
513
+
514
+ #: .\remapp\netdicom\qrscu.py:1284
515
+ #, python-brace-format
516
+ msgid "Matches are continuing for {modalities} studies"
517
+ msgstr "Se continúan los emparejamientos para los estudios {modalities}"
518
+
519
+ #: .\remapp\netdicom\qrscu.py:1371
520
+ #, python-brace-format
521
+ msgid "Currently querying for {modality} studies…"
522
+ msgstr "Actualmente solicitando estudios de {modality}…"
523
+
524
+ #: .\remapp\netdicom\qrscu.py:1781
525
+ msgid "Pruning study responses based on inc/exc options"
526
+ msgstr "Podando los estudios basados en las opciones en inc/exc"
527
+
528
+ #: .\remapp\netdicom\qrscu.py:1806
529
+ msgid "Querying at series level to get more details about studies"
530
+ msgstr ""
531
+ "Consultando a nivel de series para obtener más detalles sobre los estudios"
532
+
533
+ #: .\remapp\netdicom\qrscu.py:1830
534
+ msgid "Deleting studies we didn't ask for"
535
+ msgstr "Borrando los estudios que no solicitamos"
536
+
537
+ #: .\remapp\netdicom\qrscu.py:1867
538
+ msgid "Pruning series responses"
539
+ msgstr "Podando las respuestas de las series"
540
+
541
+ #: .\remapp\netdicom\qrscu.py:1895
542
+ #, python-brace-format
543
+ msgid ""
544
+ "{num_del_studies} RF studies were deleted from query due to no suitable RDSR "
545
+ "being found. "
546
+ msgstr ""
547
+
548
+ #: .\remapp\netdicom\qrscu.py:1901
549
+ #, python-brace-format
550
+ msgid ""
551
+ "{ct_del_studies} CT studies were deleted from query due to no suitable "
552
+ "images or reports being found. Of the remaining CT studies, {kept_ct_sr} "
553
+ "have RDSR or ESR, {kept_ct_philips} have Philips dose images, "
554
+ "{kept_ct_toshiba} have been prepared for the Toshiba import option and "
555
+ "{kept_ct_maybe_philips} have been prepared as possibly containing Philips "
556
+ "dose images. "
557
+ msgstr ""
558
+
559
+ #: .\remapp\netdicom\qrscu.py:1914
560
+ #, python-brace-format
561
+ msgid ""
562
+ "{del_sr_studies} SR studies were deleted from query due to no suitable SR "
563
+ "being found. "
564
+ msgstr ""
565
+
566
+ #: .\remapp\netdicom\qrscu.py:1933
567
+ msgid "Removing any responses that match data we already have in the database"
568
+ msgstr ""
569
+ "Eliminar cualquier respuesta que coincida con los datos que ya tenemos en la "
570
+ "base de datos"
571
+
572
+ #: .\remapp\netdicom\qrscu.py:1962
573
+ #, python-brace-format
574
+ msgid ""
575
+ "Query complete. Query took {time} and we are left with {studies_left} "
576
+ "studies to move.<br>Of the original {studies_initial} study responses, "
577
+ msgstr ""
578
+ "Consulta completada. La consulta tomó {time} y nos quedan {studies_left} "
579
+ "estudios para mover.<br>De las respuestas originales del estudio "
580
+ "{studies_initial}, "
581
+
582
+ #: .\remapp\netdicom\qrscu.py:1976
583
+ #, python-brace-format
584
+ msgid ""
585
+ "only studies with description that include '{text}' removed {num} studies, "
586
+ msgstr ""
587
+ "solo estudios cuya descripción incluya '{text}' eliminaron {num} estudios, "
588
+
589
+ #: .\remapp\netdicom\qrscu.py:1983
590
+ #, python-brace-format
591
+ msgid ""
592
+ "studies with description that do not include '{text}' removed {num} studies, "
593
+ msgstr ""
594
+ "estudios cuya descripción no incluya '{text}' eliminaron {num} estudios, "
595
+
596
+ #: .\remapp\netdicom\qrscu.py:1990
597
+ #, fuzzy, python-brace-format
598
+ msgid ""
599
+ "only studies with station names that include '{text}' at {filter_level} "
600
+ "level removed {num} studies, "
601
+ msgstr ""
602
+ "solo estudios cuya descripción incluya '{text}' eliminaron {num} estudios, "
603
+
604
+ #: .\remapp\netdicom\qrscu.py:1999
605
+ #, fuzzy, python-brace-format
606
+ msgid ""
607
+ "studies with station names that do not include '{text}' at {filter_level} "
608
+ "level removed {num} studies, "
609
+ msgstr ""
610
+ "estudios cuya descripción no incluya '{text}' eliminaron {num} estudios, "
611
+
612
+ #: .\remapp\netdicom\qrscu.py:2008
613
+ #, python-brace-format
614
+ msgid "<br>Filtering for {pruning_logs}."
615
+ msgstr ""
616
+
617
+ #: .\remapp\netdicom\qrscu.py:2014
618
+ #, fuzzy, python-brace-format
619
+ msgid ""
620
+ "<br>Removing duplicates of previous objects removed {duplicates_removed} "
621
+ "studies."
622
+ msgstr ""
623
+ "La eliminación de duplicados de objetos anteriores elimino estudios de "
624
+ "{duplicates_removed}."
625
+
626
+ #: .\remapp\netdicom\qrscu.py:2020
627
+ #, python-brace-format
628
+ msgid "<br>The following errors were received: {errors}"
629
+ msgstr ""
630
+
631
+ #: .\remapp\netdicom\qrscu.py:2045
632
+ msgid "Association aborted or never connected"
633
+ msgstr ""
634
+
635
+ #: .\remapp\netdicom\qrscu.py:2050
636
+ msgid "Association Failed"
637
+ msgstr ""
638
+
639
+ #: .\remapp\netdicom\tools.py:57
640
+ msgid "Store Docker container name is missing"
641
+ msgstr ""
642
+
643
+ #: .\remapp\netdicom\tools.py:59
644
+ msgid "Store hostname is missing (normally localhost)"
645
+ msgstr ""
646
+
647
+ #: .\remapp\templates\base.html:56 .\remapp\views.py:987
648
+ msgid "Fluoroscopy"
649
+ msgstr "Fluoroscopía"
650
+
651
+ #: .\remapp\templates\base.html:64 .\remapp\views.py:991
652
+ msgid "Radiography"
653
+ msgstr "Radiografía"
654
+
655
+ #: .\remapp\templates\base.html:68
656
+ msgid "NM/PET"
657
+ msgstr ""
658
+
659
+ #: .\remapp\templates\base.html:80
660
+ msgid "Imports"
661
+ msgstr "Importaciones"
662
+
663
+ #: .\remapp\templates\base.html:84
664
+ #, fuzzy
665
+ #| msgid "Previous patient size imports"
666
+ msgid "Patient size imports"
667
+ msgstr "Importaciones de tamaños de pacientes anteriores"
668
+
669
+ #: .\remapp\templates\base.html:85
670
+ msgid "Import patient size info"
671
+ msgstr "Importar información del tamaño del paciente"
672
+
673
+ #: .\remapp\templates\base.html:88
674
+ msgid "Previous patient size imports"
675
+ msgstr "Importaciones de tamaños de pacientes anteriores"
676
+
677
+ #: .\remapp\templates\base.html:92
678
+ msgid "DICOM query-retrieve"
679
+ msgstr ""
680
+
681
+ #: .\remapp\templates\base.html:93
682
+ msgid "Query remote server"
683
+ msgstr "Consultar a servidor remoto"
684
+
685
+ #: .\remapp\templates\base.html:94
686
+ msgid "Previous queries"
687
+ msgstr ""
688
+
689
+ #: .\remapp\templates\base.html:104
690
+ msgid "Tasks"
691
+ msgstr "Tareas"
692
+
693
+ #: .\remapp\templates\base.html:108
694
+ msgid "Exports"
695
+ msgstr "Exportaciones"
696
+
697
+ #: .\remapp\templates\base.html:111
698
+ msgid "All tasks"
699
+ msgstr ""
700
+
701
+ #: .\remapp\templates\base.html:120
702
+ msgid "Config"
703
+ msgstr "Configuración"
704
+
705
+ #: .\remapp\templates\base.html:123
706
+ msgid "User level config"
707
+ msgstr "Configuración a nivel de usuario"
708
+
709
+ #: .\remapp\templates\base.html:124
710
+ msgid "Chart options"
711
+ msgstr "Opciones de gráfico"
712
+
713
+ #: .\remapp\templates\base.html:127
714
+ msgid "Switch charts off"
715
+ msgstr "Desactivar gráficos"
716
+
717
+ #: .\remapp\templates\base.html:129
718
+ msgid "Switch charts on"
719
+ msgstr "Habilitar gráficos"
720
+
721
+ #: .\remapp\templates\base.html:133
722
+ msgid "View display names & modality"
723
+ msgstr "Mostrar visualización de nombres & modalidad"
724
+
725
+ #: .\remapp\templates\base.html:134
726
+ msgid "View not-patient indicators"
727
+ msgstr "Ver indicadores de no pacientes"
728
+
729
+ #: .\remapp\templates\base.html:138
730
+ msgid "Home page options"
731
+ msgstr "Opciones de la página de inicio"
732
+
733
+ #: .\remapp\templates\base.html:143
734
+ msgid "System level settings"
735
+ msgstr "Configuraciones a nivel de sistema"
736
+
737
+ #: .\remapp\templates\base.html:144
738
+ msgid "Users"
739
+ msgstr "Usuarios"
740
+
741
+ #: .\remapp\templates\base.html:145
742
+ msgid "Display names & modality"
743
+ msgstr "Mostrar nombres & modalidades"
744
+
745
+ #: .\remapp\templates\base.html:146
746
+ msgid "DICOM object deletion"
747
+ msgstr "Eliminación de objetos DICOM"
748
+
749
+ #: .\remapp\templates\base.html:147
750
+ msgid "DICOM networking"
751
+ msgstr "Redes DICOM"
752
+
753
+ #: .\remapp\templates\base.html:148
754
+ msgid "Patient ID"
755
+ msgstr "Identificación de paciente"
756
+
757
+ #: .\remapp\templates\base.html:149
758
+ msgid "Not-patient indicators"
759
+ msgstr "Indicadores de no pacientes"
760
+
761
+ #: .\remapp\templates\base.html:150
762
+ msgid "Skin dose map"
763
+ msgstr "Mapa de dosis en piel"
764
+
765
+ #: .\remapp\templates\base.html:151
766
+ msgid "Fluoro alert levels"
767
+ msgstr "Alerta de niveles de Fluoroscopía"
768
+
769
+ #: .\remapp\templates\base.html:152
770
+ msgid "Fluoro alert notification"
771
+ msgstr "Notificación de alerta de Fluoroscopía"
772
+
773
+ #: .\remapp\templates\base.html:153
774
+ #, fuzzy
775
+ msgid "Standard name settings"
776
+ msgstr "Configuraciones a nivel de sistema"
777
+
778
+ #: .\remapp\templates\base.html:155
779
+ msgid "Standard name mapping"
780
+ msgstr ""
781
+
782
+ #: .\remapp\templates\base.html:157
783
+ msgid "Task settings"
784
+ msgstr ""
785
+
786
+ #: .\remapp\templates\base.html:172
787
+ msgid "User"
788
+ msgstr "Usuario"
789
+
790
+ #: .\remapp\templates\base.html:178
791
+ msgid "Change password"
792
+ msgstr "Cambiar contraseña"
793
+
794
+ #: .\remapp\templates\base.html:179
795
+ msgid "Logout"
796
+ msgstr "Cerrar sesión"
797
+
798
+ #: .\remapp\templates\base.html:182
799
+ msgid "Login"
800
+ msgstr "Iniciar sesión"
801
+
802
+ #: .\remapp\templates\base.html:189
803
+ msgid "Docs"
804
+ msgstr "Documentos"
805
+
806
+ #: .\remapp\templates\base.html:196
807
+ msgid "OpenREM documentation - opens in a new tab"
808
+ msgstr "Documentación de OpenREM - se abre en una nueva pestaña"
809
+
810
+ #: .\remapp\templates\base.html:197
811
+ #, python-format
812
+ msgid "OpenREM Documentation (%(docsversion)s)"
813
+ msgstr "Documentación de OpenREM (%(docsversion)s)"
814
+
815
+ #: .\remapp\templates\remapp\home-list-modalities.html:7
816
+ #: .\remapp\templates\remapp\home.html:175
817
+ msgid "System name"
818
+ msgstr "Nombre del sistema"
819
+
820
+ #: .\remapp\templates\remapp\home-list-modalities.html:8
821
+ #: .\remapp\templates\remapp\home.html:176
822
+ msgid "Total number of studies"
823
+ msgstr "Número total de estudios"
824
+
825
+ #: .\remapp\templates\remapp\home-list-modalities.html:9
826
+ #: .\remapp\templates\remapp\home.html:177
827
+ msgid "Latest study"
828
+ msgstr "Último estudio"
829
+
830
+ #: .\remapp\templates\remapp\home-list-modalities.html:11
831
+ #: .\remapp\templates\remapp\home-list-modalities.html:13
832
+ #: .\remapp\templates\remapp\home.html:179
833
+ #: .\remapp\templates\remapp\home.html:181
834
+ #, python-format
835
+ msgid "Number in last %(day_delta)s days"
836
+ msgstr "Número en los últimos %(day_delta)s días"
837
+
838
+ #: .\remapp\templates\remapp\home.html:64
839
+ #, python-format
840
+ msgid ""
841
+ "There are %(total_studies)s studies in this database. Page last refreshed on "
842
+ "%(current_time)s"
843
+ msgstr ""
844
+ "Hay un total de %(total_studies)s estudios en esta base de datos. Página "
845
+ "actualizada por última vez el %(current_time)s"
846
+
847
+ #: .\remapp\templates\remapp\home.html:69
848
+ msgid "Chart plotting on."
849
+ msgstr "Trazado de gráficos activado."
850
+
851
+ #: .\remapp\templates\remapp\home.html:71
852
+ msgid "Chart plotting off."
853
+ msgstr "Trazado de gráficos desactivado."
854
+
855
+ #: .\remapp\templates\remapp\home.html:187
856
+ msgid "Please wait - querying the database"
857
+ msgstr "Por favor espere - consultando a la base de datos"
858
+
859
+ #: .\remapp\templates\remapp\openskinsafelist_add.html:52
860
+ #: .\remapp\templates\remapp\openskinsafelist_confirm_delete.html:95
861
+ #: .\remapp\templates\remapp\openskinsafelist_form.html:62
862
+ msgid "Only users in the Admin group can modify the openSkin safe list."
863
+ msgstr ""
864
+
865
+ #: .\remapp\templates\remapp\openskinsafelist_add.html:54
866
+ #: .\remapp\templates\remapp\openskinsafelist_confirm_delete.html:97
867
+ #: .\remapp\templates\remapp\openskinsafelist_form.html:64
868
+ msgid "Skin dose map settings do not allow safelist to be updated"
869
+ msgstr ""
870
+
871
+ #: .\remapp\views_charts_ct.py:888
872
+ msgid ""
873
+ "<br/>This may be because there are no acquisition types selected in the "
874
+ "chart options. Try selecting at least one acquisition type."
875
+ msgstr ""
876
+
877
+ #: .\remapp\views_charts_nm.py:89
878
+ msgid "Chart of study description frequency"
879
+ msgstr ""
880
+
881
+ #: .\remapp\views_charts_nm.py:96
882
+ msgid "Chart of study description workload"
883
+ msgstr ""
884
+
885
+ #: .\remapp\views_charts_nm.py:104
886
+ msgid "Chart of injected dose per study mean"
887
+ msgstr ""
888
+
889
+ #: .\remapp\views_charts_nm.py:111
890
+ msgid "Chart of injected dose per study median"
891
+ msgstr ""
892
+
893
+ #: .\remapp\views_charts_nm.py:118
894
+ msgid "Boxplot of injected dose per study"
895
+ msgstr ""
896
+
897
+ #: .\remapp\views_charts_nm.py:125
898
+ msgid "Histogram of injected dose per study"
899
+ msgstr ""
900
+
901
+ #: .\remapp\views_charts_nm.py:134
902
+ #, python-brace-format
903
+ msgid "Chart of injected dose mean over time ({time_period})"
904
+ msgstr ""
905
+
906
+ #: .\remapp\views_charts_nm.py:143
907
+ #, python-brace-format
908
+ msgid "Chart of injected dose median over time ({time_period})"
909
+ msgstr ""
910
+
911
+ #: .\remapp\views_charts_nm.py:158
912
+ msgid "Chart of injected dose versus patient weight"
913
+ msgstr ""
914
+
915
+ #: .\remapp\views_charts_nm.py:302 .\remapp\views_charts_nm.py:361
916
+ #: .\remapp\views_charts_nm.py:394 .\remapp\views_charts_nm.py:439
917
+ #: .\remapp\views_charts_nm.py:459 .\remapp\views_charts_nm.py:496
918
+ #: .\remapp\views_charts_nm.py:507
919
+ msgid "Study description"
920
+ msgstr ""
921
+
922
+ #: .\remapp\views_charts_nm.py:304 .\remapp\views_charts_nm.py:464
923
+ #: .\remapp\views_charts_nm.py:498
924
+ #, fuzzy
925
+ msgid "System"
926
+ msgstr "Nombre del sistema"
927
+
928
+ #: .\remapp\views_charts_nm.py:307
929
+ msgid "OpenREM NM study description frequency"
930
+ msgstr ""
931
+
932
+ #: .\remapp\views_charts_nm.py:334
933
+ msgid "Weekday"
934
+ msgstr ""
935
+
936
+ #: .\remapp\views_charts_nm.py:335
937
+ msgid "Frequency"
938
+ msgstr ""
939
+
940
+ #: .\remapp\views_charts_nm.py:337
941
+ msgid "OpenREM NM study description workload"
942
+ msgstr ""
943
+
944
+ #: .\remapp\views_charts_nm.py:364
945
+ msgid "Patient mass (kg)"
946
+ msgstr ""
947
+
948
+ #: .\remapp\views_charts_nm.py:365
949
+ msgid "Administed Activity (MBq)"
950
+ msgstr ""
951
+
952
+ #: .\remapp\views_charts_nm.py:366
953
+ msgid "OpenREM Nuclear Medicine Dose vs patient mass"
954
+ msgstr ""
955
+
956
+ #: .\remapp\views_charts_nm.py:405
957
+ msgid "Mean Injected Dose (MBq)"
958
+ msgstr ""
959
+
960
+ #: .\remapp\views_charts_nm.py:407
961
+ msgid "OpenREM nuclear medicine study injected dose mean"
962
+ msgstr ""
963
+
964
+ #: .\remapp\views_charts_nm.py:420
965
+ msgid "Median Injected Dose (MBq)"
966
+ msgstr ""
967
+
968
+ #: .\remapp\views_charts_nm.py:422
969
+ msgid "OpenREM nuclear medicine study injected dose median"
970
+ msgstr ""
971
+
972
+ #: .\remapp\views_charts_nm.py:438 .\remapp\views_charts_nm.py:470
973
+ msgid "Injected Dose (MBq)"
974
+ msgstr ""
975
+
976
+ #: .\remapp\views_charts_nm.py:441
977
+ msgid "OpenREM nuclear medicine study injected dose boxplot"
978
+ msgstr ""
979
+
980
+ #: .\remapp\views_charts_nm.py:474
981
+ msgid "OpenREM nuclear medicine study injected dose histogram"
982
+ msgstr ""
983
+
984
+ #: .\remapp\views_charts_nm.py:508
985
+ msgid "Administered Dose (MBq)"
986
+ msgstr ""
987
+
988
+ #: .\remapp\views_charts_nm.py:509
989
+ msgid "Study date"
990
+ msgstr ""
991
+
992
+ #: .\remapp\views_charts_nm.py:520
993
+ msgid "OpenREM Nuclear medicine injected dose over time"
994
+ msgstr ""
995
+
996
+ #: .\remapp\views_openskin.py:190
997
+ msgid "Skin dose map settings have been updated"
998
+ msgstr ""
999
+
1000
+ #: .\remapp\views_openskin.py:193
1001
+ msgid "No changes made"
1002
+ msgstr ""
1003
+
1004
+ #: .\remapp\views_openskin.py:242 .\remapp\views_openskin.py:311
1005
+ #: .\remapp\views_openskin.py:367
1006
+ msgid "Skin dose map set to not allow safelist modification"
1007
+ msgstr ""
1008
+
1009
+ #: .\remapp\views_openskin.py:252 .\remapp\views_openskin.py:319
1010
+ #: .\remapp\views_openskin.py:377
1011
+ msgid "Only members of the admin group can change the openSkin safe list"
1012
+ msgstr ""
1013
+
1014
+ #~ msgid ""
1015
+ #~ "only studies with station names that include '{text}' removed {num} "
1016
+ #~ "studies, "
1017
+ #~ msgstr ""
1018
+ #~ "solo estudios con nombre de estación que incluya '{text}' eliminaron "
1019
+ #~ "{num} estudios, "
1020
+
1021
+ #~ msgid ""
1022
+ #~ "studies with station names that do not include '{text}' removed {num} "
1023
+ #~ "studies, "
1024
+ #~ msgstr ""
1025
+ #~ "estudios con nombre de estación que no incluyan '{text}' eliminaron {num} "
1026
+ #~ "estudios, "
1027
+
1028
+ #~ msgid ""
1029
+ #~ "Removing duplicates of previous objects removed {duplicates_removed} "
1030
+ #~ "studies."
1031
+ #~ msgstr ""
1032
+ #~ "La eliminación de duplicados de objetos anteriores elimino estudios de "
1033
+ #~ "{duplicates_removed}."
1034
+
1035
+ #, fuzzy
1036
+ #~ msgid ""
1037
+ #~ "only studies at {filter_level} level with station names that include "
1038
+ #~ "'{text}' removed {num} studies, "
1039
+ #~ msgstr ""
1040
+ #~ "solo estudios con nombre de estación que incluya '{text}' eliminaron "
1041
+ #~ "{num} estudios, "
1042
+
1043
+ #, fuzzy
1044
+ #~ msgid ""
1045
+ #~ "studies at {filter_level} level with station names that do not include "
1046
+ #~ "'{text}' removed {num} studies, "
1047
+ #~ msgstr ""
1048
+ #~ "estudios con nombre de estación que no incluyan '{text}' eliminaron {num} "
1049
+ #~ "estudios, "