Skip to content

Commit 65b1430

Browse files
i18n: rewrite TRANSLATORS comments to describe meaning not UI position
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 2c67242 commit 65b1430

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/views/Validation.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
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". -->
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". -->
2222
<h1>{{ t('libresign', 'Validate signature') }}</h1>
2323
<NcNoteCard v-if="validationErrorMessage" type="error">
2424
{{ validationErrorMessage }}
2525
</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. -->
2727
<NcActions :menu-name="t('libresign', 'Validate signature')" :inline="3" :force-name="true">
2828
<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. -->
3030
{{ t('libresign', 'From UUID') }}
3131
<template #icon>
3232
<NcLoadingIcon v-if="loading" :size="20" />
@@ -41,10 +41,10 @@
4141
</template>
4242
</NcActionButton>
4343
</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. -->
4545
<NcDialog v-if="getUUID" :name="t('libresign', 'Validate signature')" is-form
4646
@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. -->
4848
<h1>{{ t('libresign', 'Validate signature') }}</h1>
4949
<NcTextField v-model="uuidToValidate"
5050
:label="t('libresign', 'Enter the ID or UUID of the document to validate.')"
@@ -55,7 +55,7 @@
5555
<template #icon>
5656
<NcLoadingIcon v-if="loading" :size="20" />
5757
</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. -->
5959
{{ t('libresign', 'Validation') }}
6060
</NcButton>
6161
</template>

0 commit comments

Comments
 (0)