mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
14 lines
384 B
Svelte
14 lines
384 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import FormatMessage from '$lib/components/i18n/format-message.svelte';
|
||
|
|
import type { InterpolationValues } from '$lib/components/i18n/format-message.svelte';
|
||
|
|
|
||
|
|
export let key: string;
|
||
|
|
export let values: InterpolationValues = {};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<FormatMessage {key} {values} let:message let:tag>
|
||
|
|
{#if tag === 'b'}
|
||
|
|
<b>{message}</b>
|
||
|
|
{/if}
|
||
|
|
</FormatMessage>
|