Skip to content

Commit 9686104

Browse files
authored
Merge pull request #521 from digital-preservation/DR2-2046_RemoveQuestionMarksOnCheckboxLabels
Dr2 2046 remove question marks on checkbox labels
2 parents a61ebaa + c8ca98a commit 9686104

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

csv-validator-parent/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@
4949
<developer>
5050
<name>Saurabh Parkhi</name>
5151
</developer>
52+
<developer>
53+
<name>Nigel Lutale</name>
54+
</developer>
55+
<developer>
56+
<name>Sam Palmer</name>
57+
</developer>
5258
</developers>
5359
<contributors>
5460
<contributor>

csv-validator-ui/src/main/scala/uk/gov/nationalarchives/csv/validator/ui/CsvValidatorUi.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -491,12 +491,12 @@ object CsvValidatorUi extends SimpleSwingApplication {
491491
private val cmbCsvEncoding = new ComboBox(CHARACTER_ENCODINGS)
492492
private val lblCsvSchemaEncoding = new Label("CSV Schema Encoding")
493493
private val cmbCsvSchemaEncoding = new ComboBox(CHARACTER_ENCODINGS)
494-
private val cbFailOnFirstError = new CheckBox("Fail on first error?")
494+
private val cbFailOnFirstError = new CheckBox("Fail on first error")
495495
cbFailOnFirstError.tooltip = "Indicates whether to fail on the first error, or whether to collect all errors!"
496-
private val cbValidateUtf8 = new CheckBox("Validate csv for valid UTF-8 characters")
496+
private val cbValidateUtf8 = new CheckBox("Validate CSV for valid UTF-8 characters")
497497
cbValidateUtf8.selected = true
498498
private val lblPathSubstitutions = new Label("Path Substitutions")
499-
private val cbEnforceCaseSensitivePathChecks = new CheckBox("Enforce case-sensitive file path checks?")
499+
private val cbEnforceCaseSensitivePathChecks = new CheckBox("Enforce case-sensitive file path checks")
500500
cbEnforceCaseSensitivePathChecks.tooltip = "Performs additional checks to ensure that the case of file-paths in the CSV file match those of the filesystem"
501501

502502
private def tablePathDialog(): Unit = {

0 commit comments

Comments
 (0)