|
18 | 18 | </div> |
19 | 19 | <div v-else-if="!hasInfo" class="infor-container"> |
20 | 20 | <div class="section"> |
| 21 | + <!-- TRANSLATORS: "Validate" here is a technical process: checking 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: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
25 | 27 | <NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true"> |
26 | 28 | <NcActionButton :wide="true" :disabled="loading" @click="openUuidDialog()"> |
| 29 | + <!-- TRANSLATORS: "UUID" is a unique technical identifier for a document (a code like '550e8400-e29b-41d4-a716-446655440000'). Keep "UUID" untranslated. --> |
27 | 30 | {{ t('libresign', 'From UUID') }} |
28 | 31 | <template #icon> |
29 | 32 | <NcLoadingIcon v-if="loading" :size="20" /> |
|
38 | 41 | </template> |
39 | 42 | </NcActionButton> |
40 | 43 | </NcActions> |
| 44 | + <!-- TRANSLATORS: Same meaning as the first string in this section: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
41 | 45 | <NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form |
42 | 46 | @closing="getUUID = false"> |
| 47 | + <!-- TRANSLATORS: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
43 | 48 | <h1>{{ t('libresign', 'Validate signature') }}</h1> |
44 | 49 | <NcTextField v-model="uuidToValidate" |
45 | 50 | :label="t('libresign', 'Enter the ID or UUID of the document to validate.')" |
|
50 | 55 | <template #icon> |
51 | 56 | <NcLoadingIcon v-if="loading" :size="20" /> |
52 | 57 | </template> |
| 58 | + <!-- TRANSLATORS: "Validation" here is the technical process of checking cryptographic integrity of signatures, NOT an approval or authorization. --> |
53 | 59 | {{ t('libresign', 'Validation') }} |
54 | 60 | </NcButton> |
55 | 61 | </template> |
|
0 commit comments