From af6336014e00cd6e740633f0c7d7d2db7fc8869b Mon Sep 17 00:00:00 2001 From: Caroline Desprat Date: Wed, 28 Aug 2024 13:05:27 +0000 Subject: [PATCH] fix: update labels --- .../BatchSearch/BatchSearchCardActions.vue | 50 ++++++++++++++++--- .../BatchSearch/BatchSearchCardDetails.vue | 15 +++--- src/lang/en.json | 17 ++++--- 3 files changed, 62 insertions(+), 20 deletions(-) diff --git a/src/components/BatchSearch/BatchSearchCardActions.vue b/src/components/BatchSearch/BatchSearchCardActions.vue index 26106a60f3..80c6219a80 100644 --- a/src/components/BatchSearch/BatchSearchCardActions.vue +++ b/src/components/BatchSearch/BatchSearchCardActions.vue @@ -1,17 +1,21 @@ @@ -59,6 +77,7 @@ const launchDownload = () => { :label="action.label" size="sm" variant="outline-secondary" + class="border-0" @click="$emit(action.event, { uuid })" /> @@ -74,12 +93,31 @@ const launchDownload = () => {
{{ downloadLabel }}{{ noDocuments ? noDocumentsLabel : downloadDocumentsLabel }} +
+
+ + {{ downloadQueriesLabel }} + + + {{ downloadQueriesWithoutResultsLabel }} +
diff --git a/src/components/BatchSearch/BatchSearchCardDetails.vue b/src/components/BatchSearch/BatchSearchCardDetails.vue index 5c5b4a4476..fc5e6a239c 100644 --- a/src/components/BatchSearch/BatchSearchCardDetails.vue +++ b/src/components/BatchSearch/BatchSearchCardDetails.vue @@ -8,6 +8,7 @@ import BatchSearchCardDetailsEntry from '@/components/BatchSearch/BatchSearchCar import DisplayDatetime from '@/components/Display/DisplayDatetime' import DisplayUser from '@/components/Display/DisplayUser' import ProjectLink from '@/components/Project/ProjectLink' +import ButtonIcon from '@/components/Button/ButtonIcon' defineOptions({ name: 'BatchSearchCardDetails' }) @@ -33,7 +34,7 @@ const dateItem = computed(() => { return { icon: 'calendar-blank', label: t('batchSearchCardDetails.date'), value: props.date } }) const authorItem = computed(() => { - return { icon: 'user-gear', label: t('batchSearchCardDetails.author'), value: props.author } + return { icon: 'user', label: t('batchSearchCardDetails.author'), value: props.author } }) const visibilityPrivate = 'eye-slash' const visibilityPublic = 'eye' @@ -50,16 +51,16 @@ const visibilityItem = computed(() => { return { icon: visibilityIcon.value, label: t('batchSearchCardDetails.visibility'), value: visibilityValue.value } }) -const phraseMatchOff = 'toggle-left' -const phraseMatchOn = 'toggle-right' -const phraseMatchIcon = computed(() => { - return props.phraseMatch ? phraseMatchOn : phraseMatchOff -}) +const phraseMatchIcon = 'quotes' const phraseMatchValue = computed(() => { return props.phraseMatch ? t('batchSearchCardDetails.phraseMatchOn') : t('batchSearchCardDetails.phraseMatchOff') }) const phraseMatchItem = computed(() => { - return { icon: phraseMatchIcon.value, label: t('batchSearchCardDetails.phraseMatch'), value: phraseMatchValue.value } + return { + icon: phraseMatchIcon, + label: t('batchSearchCardDetails.phraseMatch'), + value: phraseMatchValue.value + } }) const fuzzinessValue = computed(() => { diff --git a/src/lang/en.json b/src/lang/en.json index 616086bb84..84257edacd 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -907,7 +907,10 @@ }, "batchSearchCard": { "seeAllDocuments": "See all documents", - "downloadLabel": "Download {n} documents" + "downloadDocumentsLabel": "Download {n} documents", + "noDocumentsLabel": "No documents found", + "downloadQueriesLabel": "Download {n} queries", + "downloadQueriesWithoutResultsLabel": "Download {n} queries without results" }, "batchSearchCardActions": { "rename": "Rename", @@ -922,13 +925,13 @@ "visibilityPrivate":"Private", "visibilityShared": "Shared", "visibility":"Visibility", - "phraseMatchOn": "Phrase match: on", - "phraseMatchOff":"Phrase match: off", + "phraseMatchOn": "Do phrase match: yes", + "phraseMatchOff":"Do phrase match: no", "phraseMatch": "Phrase match", - "proximity": "Proximity", - "proximityValue":"Proximity: {n}", - "fuzziness": "Fuzziness", - "fuzzinessValue":"Fuzziness: {n}", + "proximity": "Proximity - Sentence changes", + "proximityValue":"Sentence changes: {n} | Sentence change: {n} | Sentence changes: {n}", + "fuzziness": "Fuzziness - Spelling changes", + "fuzzinessValue":"Spelling changes: {n} | Spelling change: {n} | Spelling changes: {n}", "projects":"Projects", "description": "Description", "descriptionEdit": "Edit"