mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
19 lines
646 B
Svelte
19 lines
646 B
Svelte
<script lang="ts">
|
|
import FormatMessage from '$lib/components/i18n/format-message.svelte';
|
|
import { AppRoute, OpenSettingQueryParameterValue, QueryParameter } from '$lib/constants';
|
|
import { t } from 'svelte-i18n';
|
|
</script>
|
|
|
|
<FormatMessage
|
|
key="admin.storage_template_migration_description"
|
|
values={{ template: $t('admin.storage_template_settings') }}
|
|
>
|
|
{#snippet children({ message })}
|
|
<a
|
|
href="{AppRoute.ADMIN_SETTINGS}?{QueryParameter.IS_OPEN}={OpenSettingQueryParameterValue.STORAGE_TEMPLATE}"
|
|
class="text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
{message}
|
|
</a>
|
|
{/snippet}
|
|
</FormatMessage>
|