Skip to content

Commit a8450d6

Browse files
committed
Correct text
1 parent 34ec687 commit a8450d6

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

python/static/script.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,8 @@ function table(RawDCMMetadataObject, CleanedDCMMetadataObject, DiffEnabled)
293293
<div class="inner-table-column-names">
294294
<div class="header-table-row">
295295
<div class="cell-expand-row"></div>
296-
<div class="cell-dcmtag-name"${UppermostRowStyle}><b>Tag Name</b></div>
297-
<div class="cell-dcmtag-value"${UppermostRowStyle}><b>Tag Value</b></div>
296+
<div class="cell-dcmtag-name"${UppermostRowStyle}><b>Attribute Name</b></div>
297+
<div class="cell-dcmtag-value"${UppermostRowStyle}><b>Attribute Value</b></div>
298298
</div>
299299
</div>
300300
</div>
@@ -372,7 +372,7 @@ async function UpdateDICOMInformation(dcm_idx)
372372
</br>
373373
Modality: ${modality}
374374
</br>
375-
Total number of altered tags (excluding the pixel data): ${total_altered_dicom_tags}
375+
Total number of altered attributes (excluding the pixel data): ${total_altered_dicom_tags}
376376
`;
377377
MetadataTable.innerHTML = dicom_metadata_table;
378378
LoadingState = false;

python/templates/index.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@
116116
checked>
117117
<label class="form-check-label" for="flexSwitchCheckDefault">Retain descriptors</label>
118118
</div>
119-
<label>Date processing:</label>
119+
<label>Date/Time processing:</label>
120120
<select id="date-processing-select"
121121
class="form-select"
122122
aria-label="Default select example">
123-
<option value="offset" selected>Offset</option>
123+
<option value="offset" selected>Clean</option>
124124
<option value="remove">Remove</option>
125125
<option value="keep">Keep</option>
126126
</select>
@@ -142,14 +142,14 @@
142142
role="switch"
143143
id="annotation"
144144
checked>
145-
<label class="form-check-label" for="annotation">Enable annotation</label>
145+
<label class="form-check-label" for="annotation">Enable segmentation</label>
146146
</div>
147147
<br>
148148
<button type="button"
149149
id="SubmitAnonymizationProcess"
150150
class="btn btn-primary"
151151
onclick="submit_dicom_processing_request()"
152-
disabled>Submit Options</button>
152+
disabled>Submit</button>
153153
</div>
154154
</div>
155155
<div class="col-sm-9">
@@ -218,7 +218,7 @@
218218
<select id="BrushSelect"
219219
class="form-select"
220220
aria-label="Default select example"
221-
title="Select annotation class"
221+
title="Select segmentation class"
222222
disabled>
223223
<option value="background" selected>background</option>
224224
</select>
@@ -238,23 +238,23 @@
238238
id="Add"
239239
onclick="add_class()"
240240
class="btn btn-primary"
241-
title="Add an annotation class"
241+
title="Add a segmentation class"
242242
disabled>
243243
<i class="bi bi-bookmark-plus-fill"></i>
244244
</button>
245245
<button type="button"
246246
id="Remove"
247247
onclick="remove_class()"
248248
class="btn btn-primary"
249-
title="Remove existing annotation class"
249+
title="Remove existing segmentation class"
250250
disabled>
251251
<i class="bi bi-bookmark-x-fill"></i>
252252
</button>
253253
<button type="button"
254254
id="SubmitClasses"
255255
onclick="submit_classes()"
256256
class="btn btn-primary"
257-
title="Submit classes to begin annotation"
257+
title="Submit classes to begin segmentation"
258258
disabled>
259259
<i class="bi bi-arrow-right-square-fill"></i>
260260
</button>
@@ -265,7 +265,7 @@
265265
<button type="button"
266266
id="toggle-mask"
267267
class="btn btn-primary"
268-
title="Show/hide annotation masks"
268+
title="Show/hide segmentation masks"
269269
disabled>
270270
<i class="bi bi-circle-fill"></i>
271271
</button>
@@ -279,7 +279,7 @@
279279
<button type="button"
280280
id="Mode"
281281
class="btn btn-primary"
282-
title="Toggle annotation tool"
282+
title="Toggle segmentation tool"
283283
disabled>
284284
<i class="bi bi-brush-fill"></i>
285285
</button>
@@ -309,7 +309,7 @@
309309
id="ExportMasks"
310310
class="btn btn-primary"
311311
onclick="export_masks()"
312-
title="Save annotation data to DICOM file"
312+
title="Save segmentation data to DICOM file"
313313
disabled>
314314
<i class="bi bi-floppy-fill"></i>
315315
</button>
@@ -366,7 +366,7 @@
366366
id="ToggleDiff0"
367367
oninput="ShowDiffTable(this.checked)"
368368
disabled>
369-
<label class="form-check-label" for="flexSwitchCheckDefault">Only show altered tags</label>
369+
<label class="form-check-label" for="flexSwitchCheckDefault">Only show altered attributes</label>
370370
</div>
371371
<div id="MetadataTable" class="metadata-table"></div>
372372
</div>

0 commit comments

Comments
 (0)