|
18 | 18 | </div> |
19 | 19 | <div v-else-if="!hasInfo" class="infor-container"> |
20 | 20 | <div class="section"> |
| 21 | + <!-- TRANSLATORS: Page title of the signature validation feature. "Validate" here is a technical process: the app checks the cryptographic integrity of the signatures, the certificate chain and revocation status. It does NOT mean approving or authorizing something. Choose a word in your language that conveys "to check" or "to verify", not "to approve" or "to authorize". --> |
21 | 22 | <h1>{{ t('libresign', 'Validate signature') }}</h1> |
22 | 23 | <NcNoteCard v-if="validationErrorMessage" type="error"> |
23 | 24 | {{ validationErrorMessage }} |
24 | 25 | </NcNoteCard> |
| 26 | + <!-- TRANSLATORS: Toolbar label for the signature validation feature. "Validate" here is a technical process: the app checks the cryptographic integrity of the signatures, the certificate chain and revocation status. It does NOT mean approving or authorizing something. Choose a word in your language that conveys "to check" or "to verify", not "to approve" or "to authorize". --> |
25 | 27 | <NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true"> |
26 | 28 | <NcActionButton :wide="true" :disabled="loading" @click="openUuidDialog()"> |
27 | 29 | {{ t('libresign', 'From UUID') }} |
|
38 | 40 | </template> |
39 | 41 | </NcActionButton> |
40 | 42 | </NcActions> |
| 43 | + <!-- TRANSLATORS: Dialog title of the signature validation feature. "Validate" here is a technical process: the app checks the cryptographic integrity of the signatures, the certificate chain and revocation status. It does NOT mean approving or authorizing something. Choose a word in your language that conveys "to check" or "to verify", not "to approve" or "to authorize". --> |
41 | 44 | <NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form |
42 | 45 | @closing="getUUID = false"> |
| 46 | + <!-- TRANSLATORS: Heading inside the dialog. Same context as the dialog title: cryptographic check of signature integrity, not an approval action. --> |
43 | 47 | <h1>{{ t('libresign', 'Validate signature') }}</h1> |
44 | 48 | <NcTextField v-model="uuidToValidate" |
45 | 49 | :label="t('libresign', 'Enter the ID or UUID of the document to validate.')" |
|
50 | 54 | <template #icon> |
51 | 55 | <NcLoadingIcon v-if="loading" :size="20" /> |
52 | 56 | </template> |
| 57 | + <!-- TRANSLATORS: Submit button that starts the cryptographic check of the document signatures. "Validation" here is the technical process of verifying integrity, not an approval or authorization action. --> |
53 | 58 | {{ t('libresign', 'Validation') }} |
54 | 59 | </NcButton> |
55 | 60 | </template> |
|
0 commit comments