|
73 | 73 | <div v-else-if="identityVerified" class="step-content"> |
74 | 74 | <div class="verification-success"> |
75 | 75 | <p class="verification-message"> |
| 76 | + <!-- TRANSLATORS: Success message shown after the signer's identity has been confirmed via a numeric one-time password (OTP) delivered through email, SMS, WhatsApp, Telegram, Signal, or XMPP. "identity" here means the system confirmed the signer is who they claim to be. --> |
76 | 77 | {{ t('libresign', 'Your identity has been verified.') }} |
77 | 78 | </p> |
78 | 79 | <p class="signature-ready"> |
| 80 | + <!-- TRANSLATORS: Follow-up message shown right after identity verification succeeds, inviting the signer to proceed with signing the document. --> |
79 | 81 | {{ t('libresign', 'You can now sign the document.') }} |
80 | 82 | </p> |
81 | 83 | </div> |
|
96 | 98 |
|
97 | 99 | <!-- Step 2 actions (common) --> |
98 | 100 | <template v-else-if="!identityVerified"> |
99 | | - <!-- TRANSLATORS: Button label. Sends a new numeric one-time password (OTP) to the signer via email, SMS, WhatsApp, Telegram, Signal, or XMPP. "code" here means a short numeric verification code, not source code. --> |
100 | 101 | <NcButton :disabled="loading" |
101 | | - type="submit" |
| 102 | + type="submit" |
102 | 103 | @click="requestNewCode"> |
103 | 104 | <template #icon> |
104 | 105 | <NcLoadingIcon v-if="loading" :size="20" /> |
105 | 106 | </template> |
| 107 | + <!-- TRANSLATORS: Button label. Sends a new numeric one-time password (OTP) to the signer via email, SMS, WhatsApp, Telegram, Signal, or XMPP. "code" here means a short numeric verification code, not source code. --> |
106 | 108 | {{ t('libresign', 'Request new code') }} |
107 | 109 | </NcButton> |
108 | | - <!-- TRANSLATORS: Button label. Submits the numeric one-time password (OTP) typed by the signer to complete verification. The code was delivered via email, SMS, WhatsApp, Telegram, Signal, or XMPP. "code" here means a short numeric verification code, not source code. --> |
109 | 110 | <NcButton :disabled="!canSendCode" |
110 | 111 | type="submit" |
111 | 112 | variant="primary" |
112 | 113 | @click="sendCode"> |
113 | 114 | <template #icon> |
114 | 115 | <NcLoadingIcon v-if="loading" :size="20" /> |
115 | 116 | </template> |
| 117 | + <!-- TRANSLATORS: Button label. Submits the numeric one-time password (OTP) typed by the signer to complete verification. The code was delivered via email, SMS, WhatsApp, Telegram, Signal, or XMPP. "code" here means a short numeric verification code, not source code. --> |
116 | 118 | {{ t('libresign', 'Validate code') }} |
117 | 119 | </NcButton> |
118 | 120 | </template> |
|
0 commit comments