diff --git a/src/components/AlbumGallery.vue b/src/components/AlbumGallery.vue index 3211675..7d90614 100644 --- a/src/components/AlbumGallery.vue +++ b/src/components/AlbumGallery.vue @@ -161,7 +161,7 @@ export default { }, sortByKeys: function () { return [ - { title: this.$t('selectOptionSortCreatedOn'), value: 'createdOn' }, + { title: this.$t('selectOptionSortNewestImage'), value: 'newestImage' }, { title: this.$t('selectOptionSortViewCount'), value: 'imageViewCount' }, { title: this.$t('selectOptionSortImageCount'), value: 'imageCount' }, { title: this.$t('selectOptionSortName'), value: 'name' } @@ -212,7 +212,7 @@ export default { albumCount: -1, tempSearch: null, search: null, - orderBy: 'createdOn', + orderBy: 'newestImage', ascending: 0, cardSize: 'md', selectedItems: {}, diff --git a/src/plugins/i18n/de_DE.json b/src/plugins/i18n/de_DE.json index c971ea2..9374695 100644 --- a/src/plugins/i18n/de_DE.json +++ b/src/plugins/i18n/de_DE.json @@ -54,6 +54,7 @@ "pageAboutCardDockerText": "Interesse Frickl selber laufen zu lassen? Zieh ein Docker-Bild von Docker Hub.", "pageAboutCardSponsorTitle": "Sponsor", "pageAboutCardSponsorText": "Ist Frickl nützlich für dich? Unterstütze Sebastian damit er Frickl weiter entwickeln kann.", + "selectOptionSortNewestImage": "Neustes Bild", "selectOptionSortCreatedOn": "Erstellt am", "selectOptionSortViewCount": "Betrachtungsanzahl", "selectOptionSortIsPublic": "Ist öffentlich", diff --git a/src/plugins/i18n/en_GB.json b/src/plugins/i18n/en_GB.json index 38bc7e1..7207565 100644 --- a/src/plugins/i18n/en_GB.json +++ b/src/plugins/i18n/en_GB.json @@ -54,6 +54,7 @@ "pageAboutCardDockerText": "Want to run Frickl yourself? Pull the Docker image from Docker Hub.", "pageAboutCardSponsorTitle": "Sponsor", "pageAboutCardSponsorText": "Has Frickl been useful to you? Please consider sponsoring Sebastian so he can continue the development of Frickl.", + "selectOptionSortNewestImage": "Newest image", "selectOptionSortCreatedOn": "Created on", "selectOptionSortViewCount": "View count", "selectOptionSortIsPublic": "Is public",