diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-11-16 02:47:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 02:47:23 +0100 |
commit | 0d4ece537ab667925d6f1aa0a155610e9bc9e063 (patch) | |
tree | da91edb8a10851ba667f9983cbc13bb63d5dc04f /core | |
parent | f4d86818b287d265b402f5b2cb53a89689fbeffd (diff) | |
parent | b9473b46ad5e6880b016c3600426e7fddab4b153 (diff) | |
download | nextcloud-server-0d4ece537ab667925d6f1aa0a155610e9bc9e063.tar.gz nextcloud-server-0d4ece537ab667925d6f1aa0a155610e9bc9e063.zip |
Merge pull request #41506 from nextcloud/Valdnet-patch-1
Correct spelling
Diffstat (limited to 'core')
-rw-r--r-- | core/src/components/GlobalSearch/CustomDateRangeModal.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/GlobalSearch/CustomDateRangeModal.vue b/core/src/components/GlobalSearch/CustomDateRangeModal.vue index aca37b3c71b..8cbcc650090 100644 --- a/core/src/components/GlobalSearch/CustomDateRangeModal.vue +++ b/core/src/components/GlobalSearch/CustomDateRangeModal.vue @@ -14,12 +14,12 @@ <NcDateTimePicker :id="'globalsearch-custom-date-range-start'" v-model="dateFilter.startFrom" :max="new Date()" - :label="t('core', 'Pick start date')" + :label="t('core', 'Pick a start date')" type="date" /> <NcDateTimePicker :id="'globalsearch-custom-date-range-end'" v-model="dateFilter.endAt" :max="new Date()" - :label="t('core', 'Pick end date')" + :label="t('core', 'Pick an end date')" type="date" /> </div> <NcButton @click="applyCustomRange"> |