Update page design

This commit is contained in:
Luca Bosin
2023-08-25 21:26:34 +02:00
parent 52f05db659
commit b239c72fc0
7 changed files with 212 additions and 34 deletions

View File

@ -5,6 +5,7 @@ export const language: Writable<TranslationKey> = writable('de');
const translations: Record<TranslationKey, Record<string, string>> = {
de: {
'gallery': 'Galerie',
'gallery-description': 'Fotogalerie von Luca Bosin',
'album': 'Album',
'albums': 'Alben',
'photo': 'Foto',
@ -19,9 +20,13 @@ const translations: Record<TranslationKey, Record<string, string>> = {
'open-name': '{0} öffnen',
'download': 'Herunterladen',
'download-all': 'Alle herunterladen',
'author': 'Autor',
'authors': 'Autoren',
'license': 'Lizenz',
},
en: {
'gallery': 'Gallery',
'gallery-description': 'Photo gallery by Luca Bosin',
'album': 'Album',
'albums': 'Albums',
'photo': 'Photo',
@ -36,6 +41,9 @@ const translations: Record<TranslationKey, Record<string, string>> = {
'open-name': 'Open {0}',
'download': 'Download',
'download-all': 'Download all',
'author': 'Author',
'authors': 'Authors',
'license': 'License',
}
};