Skip to content

Commit 5dd4a30

Browse files
authored
Merge pull request #7137 from LibreSign/backport/7134/stable33
[stable33] feat: add translators comments validate
2 parents 916de7b + 4b5b4d7 commit 5dd4a30

4 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/components/LeftSidebar/LeftSidebar.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<NcIconSvgWrapper :path="mdiFolder" :size="20" />
2424
</template>
2525
</NcAppNavigationItem>
26+
<!-- 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". -->
2627
<NcAppNavigationItem id="validation"
2728
:to="{name: 'validation'}"
2829
:name="t('libresign', 'Validate')"

src/views/Documents/IdDocsValidation.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
<template #icon>
127127
<NcIconSvgWrapper :path="mdiEye" :size="20" />
128128
</template>
129+
<!-- 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". -->
129130
{{ t('libresign', 'Validate') }}
130131
</NcActionButton>
131132
</template>

src/views/FilesList/FileEntry/FileEntryActions.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ export default {
173173
})
174174
this.registerAction({
175175
id: 'validate',
176+
// 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".
176177
title: t('libresign', 'Validate'),
177178
iconSvgInline: svgTextBoxCheck,
178179
})

src/views/Validation.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@
1818
</div>
1919
<div v-else-if="!hasInfo" class="infor-container">
2020
<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". -->
2122
<h1>{{ t('libresign', 'Validate signature') }}</h1>
2223
<NcNoteCard v-if="validationErrorMessage" type="error">
2324
{{ validationErrorMessage }}
2425
</NcNoteCard>
26+
<!-- TRANSLATORS: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. -->
2527
<NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true">
2628
<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. -->
2730
{{ t('libresign', 'From UUID') }}
2831
<template #icon>
2932
<NcLoadingIcon v-if="loading" :size="20" />
@@ -38,8 +41,10 @@
3841
</template>
3942
</NcActionButton>
4043
</NcActions>
44+
<!-- TRANSLATORS: Same meaning as the first string in this section: technical process of checking cryptographic integrity of signatures, NOT an approval. -->
4145
<NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form
4246
@closing="getUUID = false">
47+
<!-- TRANSLATORS: Same meaning as the previous string: technical process of checking cryptographic integrity of signatures, NOT an approval. -->
4348
<h1>{{ t('libresign', 'Validate signature') }}</h1>
4449
<NcTextField v-model="uuidToValidate"
4550
:label="t('libresign', 'Enter the ID or UUID of the document to validate.')"
@@ -50,6 +55,7 @@
5055
<template #icon>
5156
<NcLoadingIcon v-if="loading" :size="20" />
5257
</template>
58+
<!-- TRANSLATORS: "Validation" here is the technical process of checking cryptographic integrity of signatures, NOT an approval or authorization. -->
5359
{{ t('libresign', 'Validation') }}
5460
</NcButton>
5561
</template>

0 commit comments

Comments
 (0)