diff --git a/frontend/src/lib/i18n/locales/en.json b/frontend/src/lib/i18n/locales/en.json index 31a6277..2d1faa8 100644 --- a/frontend/src/lib/i18n/locales/en.json +++ b/frontend/src/lib/i18n/locales/en.json @@ -411,7 +411,8 @@ "delete_image": "Delete image", "edit_the_image": "Edit the image", "filename_word": "Filename", - "alt_text": "Alt(ernate) text / Caption" + "alt_text": "Alt(ernate) text / Caption", + "storage_usage": "You've used {{used}} Mib out of {{total}} MiB of storage. That's equivalent to {{percent}}% of your storage." }, "video_uploader": { "time_elapsed": "Time elapsed", diff --git a/frontend/src/routes/edit/files/+page.svelte b/frontend/src/routes/edit/files/+page.svelte index f9405c7..8aa7ea2 100644 --- a/frontend/src/routes/edit/files/+page.svelte +++ b/frontend/src/routes/edit/files/+page.svelte @@ -12,6 +12,7 @@ import { onMount } from 'svelte'; import Uploader from './uploader.svelte'; import { getLocalization } from '$lib/i18n'; + const { t } = getLocalization(); export let data: PageData; @@ -49,6 +50,13 @@