mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix: Update locked folder text and improve translations (#18622)
* Update locked folder text and remove unused translations * uppercase Locked folder in Menu * convert some translates to icu and improve * add iOS debug info translations for background processes * fix lint --------- Co-authored-by: dvbthien <dvbthien@gmail.com>
This commit is contained in:
parent
dbdb64f6c5
commit
0f42babb6b
7 changed files with 57 additions and 84 deletions
|
|
@ -56,6 +56,6 @@
|
|||
|
||||
<MenuOption
|
||||
onClick={() => toggleLockedVisibility()}
|
||||
text={isLocked ? $t('move_off_locked_folder') : $t('add_to_locked_folder')}
|
||||
text={isLocked ? $t('move_off_locked_folder') : $t('move_to_locked_folder')}
|
||||
icon={isLocked ? mdiLockOpenVariantOutline : mdiLockOutline}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
{#if menuItem}
|
||||
<MenuOption
|
||||
onClick={setLockedVisibility}
|
||||
text={unlock ? $t('move_off_locked_folder') : $t('add_to_locked_folder')}
|
||||
text={unlock ? $t('move_off_locked_folder') : $t('move_to_locked_folder')}
|
||||
icon={unlock ? mdiLockOpenVariantOutline : mdiLockOutline}
|
||||
/>
|
||||
{:else}
|
||||
|
|
@ -67,6 +67,6 @@
|
|||
variant="ghost"
|
||||
onclick={setLockedVisibility}
|
||||
>
|
||||
{unlock ? $t('move_off_locked_folder') : $t('add_to_locked_folder')}
|
||||
{unlock ? $t('move_off_locked_folder') : $t('move_to_locked_folder')}
|
||||
</Button>
|
||||
{/if}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue