Skip to content

Commit

Permalink
chore: localize file & folder labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabolus committed Jan 24, 2024
1 parent 23b80c4 commit 4ff4b3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/s3.buckets.$id.($key)/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down
2 changes: 2 additions & 0 deletions public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions public/locales/it/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 4ff4b3f

Please sign in to comment.