2023-04-01 06:53:20 +02:00
|
|
|
<script lang="ts">
|
2024-06-21 22:08:36 +02:00
|
|
|
import FormatMessage from '$lib/components/i18n/format-message.svelte';
|
2024-06-08 11:57:18 +02:00
|
|
|
import { AppRoute, OpenSettingQueryParameterValue, QueryParameter } from '$lib/constants';
|
2024-06-22 18:08:56 +02:00
|
|
|
import { t } from 'svelte-i18n';
|
2023-04-01 06:53:20 +02:00
|
|
|
</script>
|
|
|
|
|
|
2024-06-21 22:08:36 +02:00
|
|
|
<FormatMessage
|
2024-06-22 18:08:56 +02:00
|
|
|
key="admin.storage_template_migration_description"
|
2024-06-21 22:08:36 +02:00
|
|
|
values={{ template: $t('admin.storage_template_settings') }}
|
|
|
|
|
let:message
|
2023-04-01 06:53:20 +02:00
|
|
|
>
|
2024-06-21 22:08:36 +02:00
|
|
|
<a
|
|
|
|
|
href="{AppRoute.ADMIN_SETTINGS}?{QueryParameter.IS_OPEN}={OpenSettingQueryParameterValue.STORAGE_TEMPLATE}"
|
|
|
|
|
class="text-immich-primary dark:text-immich-dark-primary"
|
|
|
|
|
>
|
|
|
|
|
{message}
|
|
|
|
|
</a>
|
|
|
|
|
</FormatMessage>
|