mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 13:44:16 -04:00
fix: missing translation in pin settings (#18203)
This commit is contained in:
parent
4c4c67f0d2
commit
feb475561e
@ -5,6 +5,7 @@
|
|||||||
"new_pin_code": "New PIN code",
|
"new_pin_code": "New PIN code",
|
||||||
"setup_pin_code": "Setup a PIN code",
|
"setup_pin_code": "Setup a PIN code",
|
||||||
"confirm_new_pin_code": "Confirm new PIN code",
|
"confirm_new_pin_code": "Confirm new PIN code",
|
||||||
|
"change_pin_code": "Change PIN code",
|
||||||
"unable_to_change_pin_code": "Unable to change PIN code",
|
"unable_to_change_pin_code": "Unable to change PIN code",
|
||||||
"unable_to_setup_pin_code": "Unable to setup PIN code",
|
"unable_to_setup_pin_code": "Unable to setup PIN code",
|
||||||
"pin_code_changed_successfully": "Successfully changed PIN code",
|
"pin_code_changed_successfully": "Successfully changed PIN code",
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
<form autocomplete="off" onsubmit={handleSubmit} class="mt-6">
|
<form autocomplete="off" onsubmit={handleSubmit} class="mt-6">
|
||||||
<div class="flex flex-col gap-6 place-items-center place-content-center">
|
<div class="flex flex-col gap-6 place-items-center place-content-center">
|
||||||
{#if hasPinCode}
|
{#if hasPinCode}
|
||||||
<p class="text-dark">Change PIN code</p>
|
<p class="text-dark">{$t('change_pin_code')}</p>
|
||||||
<PinCodeInput label={$t('current_pin_code')} bind:value={currentPinCode} tabindexStart={1} pinLength={6} />
|
<PinCodeInput label={$t('current_pin_code')} bind:value={currentPinCode} tabindexStart={1} pinLength={6} />
|
||||||
|
|
||||||
<PinCodeInput label={$t('new_pin_code')} bind:value={newPinCode} tabindexStart={7} pinLength={6} />
|
<PinCodeInput label={$t('new_pin_code')} bind:value={newPinCode} tabindexStart={7} pinLength={6} />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user