mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
fix(i18n): add translation key for partner's photos (#26348)
* fix(i18n): add translation key for partner's photos * reuse existing key
This commit is contained in:
parent
7005e9fc50
commit
ffd54d0431
1 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@
|
|||
import { AssetVisibility } from '@immich/sdk';
|
||||
import { mdiArrowLeft } from '@mdi/js';
|
||||
import type { PageData } from './$types';
|
||||
import { t } from 'svelte-i18n';
|
||||
|
||||
interface Props {
|
||||
data: PageData;
|
||||
|
|
@ -51,7 +52,7 @@
|
|||
<ControlAppBar showBackButton backIcon={mdiArrowLeft} onClose={() => goto(Route.sharing())}>
|
||||
{#snippet leading()}
|
||||
<p class="whitespace-nowrap text-immich-fg dark:text-immich-dark-fg">
|
||||
{data.partner.name}'s photos
|
||||
{$t('partner_list_user_photos', { values: { user: data.partner.name } })}
|
||||
</p>
|
||||
{/snippet}
|
||||
</ControlAppBar>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue