|
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 | + <!-- 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". --> |
22 | 22 | <h1>{{ t('libresign', 'Validate signature') }}</h1> |
23 | 23 | <NcNoteCard v-if="validationErrorMessage" type="error"> |
24 | 24 | {{ validationErrorMessage }} |
25 | 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". --> |
| 26 | + <!-- TRANSLATORS: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
27 | 27 | <NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true"> |
28 | 28 | <NcActionButton :wide="true" :disabled="loading" @click="openUuidDialog()"> |
29 | | - <!-- TRANSLATORS: Button that opens a dialog where the user can type a UUID (a unique identifier code) or numeric ID to look up and validate a specific signed document. "UUID" is a technical term and should not be translated. --> |
| 29 | + <!-- TRANSLATORS: "UUID" is a unique technical identifier for a document (a code like '550e8400-e29b-41d4-a716-446655440000'). Keep "UUID" untranslated. --> |
30 | 30 | {{ t('libresign', 'From UUID') }} |
31 | 31 | <template #icon> |
32 | 32 | <NcLoadingIcon v-if="loading" :size="20" /> |
|
41 | 41 | </template> |
42 | 42 | </NcActionButton> |
43 | 43 | </NcActions> |
44 | | - <!-- 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". --> |
| 44 | + <!-- TRANSLATORS: Same meaning as the first string in this section: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
45 | 45 | <NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form |
46 | 46 | @closing="getUUID = false"> |
47 | | - <!-- TRANSLATORS: Heading inside the dialog. Same context as the dialog title: cryptographic check of signature integrity, not an approval action. --> |
| 47 | + <!-- TRANSLATORS: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. --> |
48 | 48 | <h1>{{ t('libresign', 'Validate signature') }}</h1> |
49 | 49 | <NcTextField v-model="uuidToValidate" |
50 | 50 | :label="t('libresign', 'Enter the ID or UUID of the document to validate.')" |
|
55 | 55 | <template #icon> |
56 | 56 | <NcLoadingIcon v-if="loading" :size="20" /> |
57 | 57 | </template> |
58 | | - <!-- 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. --> |
| 58 | + <!-- TRANSLATORS: "Validation" here is the technical process of checking cryptographic integrity of signatures, NOT an approval or authorization. --> |
59 | 59 | {{ t('libresign', 'Validation') }} |
60 | 60 | </NcButton> |
61 | 61 | </template> |
|
0 commit comments