diff --git a/app/routes/s3.buckets.$id.($key)/route.tsx b/app/routes/s3.buckets.$id.($key)/route.tsx index 5cac9fb..5c6e830 100644 --- a/app/routes/s3.buckets.$id.($key)/route.tsx +++ b/app/routes/s3.buckets.$id.($key)/route.tsx @@ -361,7 +361,7 @@ export default function BucketDetails() { field: 'type', headerName: t('type'), valueGetter: params => - params.row.item.Key ? 'File' : 'Folder', + params.row.item.Key ? t('file') : t('folder'), sortable: !search, width: 100, }, diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 91a397f..bcc42b0 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -45,7 +45,9 @@ "emptyBucketsConfirmationTitle_one": "Empty selected bucket?", "emptyBucketsConfirmationTitle_other": "Empty selected buckets?", "endpoint": "Endpoint", + "file": "File", "firstInFirstOut": "First-in-first-out", + "folder": "Folder", "folderName": "Folder name", "homeDescription": "A simple UI to interact with real or emulated AWS services (LocalStack, Minio, etc).", "lastModified": "Last modified", diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 79ff1da..eddfddc 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -55,7 +55,9 @@ "emptyBucketsConfirmationTitle_many": "Svuotare i bucket selezionati?", "emptyBucketsConfirmationTitle_other": "Svuotare i bucket selezionati?", "endpoint": "Endpoint", + "file": "File", "firstInFirstOut": "First-in-first-out", + "folder": "Cartella", "folderName": "Nome cartella", "homeDescription": "Una semplice interfaccia utente per interagire con servizi AWS reali o emulati (LocalStack, Minio, ecc.)", "lastModified": "Ultima modifica",