Skip to content

Commit fd67942

Browse files
i18n: add TRANSLATORS comments to Validate signature strings in Validation view
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 916de7b commit fd67942

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/views/Validation.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
</div>
1919
<div v-else-if="!hasInfo" class="infor-container">
2020
<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". -->
2122
<h1>{{ t('libresign', 'Validate signature') }}</h1>
2223
<NcNoteCard v-if="validationErrorMessage" type="error">
2324
{{ validationErrorMessage }}
2425
</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". -->
2527
<NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true">
2628
<NcActionButton :wide="true" :disabled="loading" @click="openUuidDialog()">
2729
{{ t('libresign', 'From UUID') }}
@@ -38,8 +40,10 @@
3840
</template>
3941
</NcActionButton>
4042
</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". -->
4144
<NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form
4245
@closing="getUUID = false">
46+
<!-- TRANSLATORS: Heading inside the dialog. Same context as the dialog title: cryptographic check of signature integrity, not an approval action. -->
4347
<h1>{{ t('libresign', 'Validate signature') }}</h1>
4448
<NcTextField v-model="uuidToValidate"
4549
:label="t('libresign', 'Enter the ID or UUID of the document to validate.')"
@@ -50,6 +54,7 @@
5054
<template #icon>
5155
<NcLoadingIcon v-if="loading" :size="20" />
5256
</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. -->
5358
{{ t('libresign', 'Validation') }}
5459
</NcButton>
5560
</template>

0 commit comments

Comments
 (0)