Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed english to nl and a few spelling fixes #94

Merged
merged 3 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"cSpell.words": [
"gedepubliceerd",
"depubliceren",
"Depubliceren",
"Matadata",
"nextcloud",
"opencatalogi",
"pinia"
"pinia",
"Toegangs"
]
}
8 changes: 4 additions & 4 deletions src/dialogs/attachment/CopyAttachmentDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import { publicationStore, navigationStore } from '../../store/store.js'
<template>
<NcDialog
v-if="navigationStore.dialog === 'copyAttachment'"
name="Bijlage kopieren"
name="Bijlage kopiëren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> kopieren?
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> kopiëren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Bijlage succesvol gekopierd</p>
<p>Bijlage succesvol gekopieerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -35,7 +35,7 @@ import { publicationStore, navigationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<ContentCopy v-if="!loading" :size="20" />
</template>
Kopieren
Kopiëren
</NcButton>
</template>
</NcDialog>
Expand Down
8 changes: 4 additions & 4 deletions src/dialogs/attachment/DepublishAttachmentDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import { publicationStore, navigationStore } from '../../store/store.js'
<template>
<NcDialog
v-if="navigationStore.dialog === 'depublishAttachment'"
name="Bijlage depubliseren"
name="Bijlage depubliceren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> depubliseren?
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> depubliceren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Bijlage succesvol gedepubliseerd</p>
<p>Bijlage succesvol gedepubliceerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -35,7 +35,7 @@ import { publicationStore, navigationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<PublishOff v-if="!loading" :size="20" />
</template>
Depubliseren
Depubliceren
</NcButton>
</template>
</NcDialog>
Expand Down
6 changes: 3 additions & 3 deletions src/dialogs/attachment/PublishAttachmentDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { publicationStore, navigationStore } from '../../store/store.js'
name="Bijlage publiseren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> publiseren?
Wil je <b>{{ publicationStore.attachmentItem.name ?? publicationStore.attachmentItem.title }}</b> publiceren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Bijlage succesvol gepubliseerd</p>
<p>Bijlage succesvol gepubliceerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -35,7 +35,7 @@ import { publicationStore, navigationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<Publish v-if="!loading" :size="20" />
</template>
Publiseren
Publiceren
</NcButton>
</template>
</NcDialog>
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/listing/DeleteListingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { directoryStore, navigationStore } from '../../store/store.js'
name="Listing verwijderen"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ directoryStore.listingItem.name ?? directoryStore.listingItem.title }}</b> definitef verwijderen? Deze actie kan niet ongedaan worden gemaakt.
Wil je <b>{{ directoryStore.listingItem.name ?? directoryStore.listingItem.title }}</b> definitief verwijderen? Deze actie kan niet ongedaan worden gemaakt.
</p>
<NcNoteCard v-if="succes" type="success">
<p>Listing succesvol verwijderd</p>
Expand Down
6 changes: 3 additions & 3 deletions src/dialogs/metaData/CopyMetaDataDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { navigationStore, metadataStore } from '../../store/store.js'
name="Metadata kopieren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ metadataStore.metaDataItem.title ?? metadataStore.metaDataItem.name }}</b> kopieren?
Wil je <b>{{ metadataStore.metaDataItem.title ?? metadataStore.metaDataItem.name }}</b> kopiëren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Metadata succesvol gekopierd</p>
<p>Metadata succesvol gekopieerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -32,7 +32,7 @@ import { navigationStore, metadataStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<ContentCopy v-if="!loading" :size="20" />
</template>
Kopieren
Kopiëren
</NcButton>
</template>
</NcDialog>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { navigationStore, metadataStore } from '../../store/store.js'
name="Metadata eigenschap verwijderen"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ metadataStore.metadataDataKey }}</b> kopieren?
Wil je <b>{{ metadataStore.metadataDataKey }}</b> kopiëren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Metadata eigenschap succesvol gekpierd</p>
<p>Metadata eigenschap succesvol gekopieerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -33,7 +33,7 @@ import { navigationStore, metadataStore } from '../../store/store.js'
<Cancel v-if="loading" :size="20" />
<ContentCopy v-if="!loading" :size="20" />
</template>
Kopieren
Kopiëren
</NcButton>
</template>
</NcDialog>
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/publication/ArchivePublicationDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { navigationStore, publicationStore } from '../../store/store.js'
name="Publicatie archiveren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> archiveren? Dit betekend dat de publicatie wordt de gepubliseerd en niet langer vindbaar is. Bij de eerste volgende gelegendheid wordt de publicatie <b>automatisch</b> over gebracht naar het digitaal archief.
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> archiveren? Dit betekend dat de publicatie wordt de gepubliceerd en niet langer vindbaar is. Bij de eerste volgende gelegenheid wordt de publicatie <b>automatisch</b> over gebracht naar het digitaal archief.
</p>
<NcNoteCard v-if="succes" type="success">
<p>Publicatie succesvol gearchiveerd</p>
Expand Down
6 changes: 3 additions & 3 deletions src/dialogs/publication/CopyPublicationDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { navigationStore, publicationStore } from '../../store/store.js'
name="Publicatie kopieren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> kopieren?
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> kopiëren?
</p>
<NcNoteCard v-if="succes" type="success">
<p>Publicatie succesvol gekopierd</p>
<p>Publicatie succesvol gekopieerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -32,7 +32,7 @@ import { navigationStore, publicationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<ContentCopy v-if="!loading" :size="20" />
</template>
Kopieren
Kopiëren
</NcButton>
</template>
</NcDialog>
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/publication/DeletePublicationDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { navigationStore, publicationStore } from '../../store/store.js'
name="Publicatie verwijderen"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> definitef verwijderen? Deze actie kan niet ongedaan worden gemaakt.
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> definitief verwijderen? Deze actie kan niet ongedaan worden gemaakt.
</p>
<NcNoteCard v-if="succes" type="success">
<p>Publicatie succesvol verwijderd</p>
Expand Down
6 changes: 3 additions & 3 deletions src/dialogs/publication/DepublishPublicationDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { navigationStore, publicationStore } from '../../store/store.js'
name="Publicatie de-publiseren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> depubliseren? De publicatie is dan niet meer vindbaar via de zoek index. Bijlagen die alléén aan deze publicatie zijn gekoppeld zijn dan ook niet meer vindbaar
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> depubliceren? De publicatie is dan niet meer vindbaar via de zoek index. Bijlagen die alléén aan deze publicatie zijn gekoppeld zijn dan ook niet meer vindbaar
</p>
<NcNoteCard v-if="succes" type="success">
<p>Publicatie succesvol gedepubliseerd</p>
<p>Publicatie succesvol gedepubliceerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -33,7 +33,7 @@ import { navigationStore, publicationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<PublishOff v-if="!loading" :size="20" />
</template>
Depubliseren
Depubliceren
</NcButton>
</template>
</NcDialog>
Expand Down
6 changes: 3 additions & 3 deletions src/dialogs/publication/PublishPublicationDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { navigationStore, publicationStore } from '../../store/store.js'
name="Publicatie publiseren"
:can-close="false">
<p v-if="!succes">
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> publiseren? Deze actie betekend dat de publicatie (en gepubliseerde bijlagen) worden opgenomen in de zoekindex en publiek toegankenlijk zijn.
Wil je <b>{{ publicationStore.publicationItem.name ?? publicationStore.publicationItem.title }}</b> publiceren? Deze actie betekend dat de publicatie (en gepubliceerde bijlagen) worden opgenomen in de zoekindex en publiek toegankelijk zijn.
</p>
<NcNoteCard v-if="succes" type="success">
<p>Publicatie succesvol gepubliseerd</p>
<p>Publicatie succesvol gepubliceerd</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -33,7 +33,7 @@ import { navigationStore, publicationStore } from '../../store/store.js'
<NcLoadingIcon v-if="loading" :size="20" />
<Publish v-if="!loading" :size="20" />
</template>
Publiseren
Publiceren
</NcButton>
</template>
</NcDialog>
Expand Down
2 changes: 1 addition & 1 deletion src/modals/directory/EditListingModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { navigationStore, directoryStore, metadataStore } from '../../store/stor
<NcLoadingIcon v-if="loading" :size="20" />
<ContentSaveOutline v-if="!loading" :size="20" />
</template>
Submit
Bewerken
</NcButton>
</div>
</NcModal>
Expand Down
3 changes: 1 addition & 2 deletions src/modals/metaData/AddMetaDataPropertyModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { navigationStore, metadataStore } from '../../store/store.js'
</NcNoteCard>

<div v-if="!success" class="form-group">

<NcTextField :disabled="loading"
label="Eigenschap naam"
required
Expand All @@ -39,7 +38,7 @@ import { navigationStore, metadataStore } from '../../store/store.js'
:value.sync="properties.pattern" />

<NcTextField :disabled="loading"
label="Defaultwaarde"
label="Default waarde"
:value.sync="properties.default" />

<NcTextField :disabled="loading"
Expand Down
2 changes: 1 addition & 1 deletion src/modals/metaData/EditMetaDataPropertyModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { navigationStore, metadataStore } from '../../store/store.js'
:value.sync="metadata.properties[metadataStore.metadataDataKey].pattern" />

<NcTextField :disabled="loading"
label="Defaultwaarde"
label="Default waarde"
:value.sync="metadata.properties[metadataStore.metadataDataKey].default" />

<NcTextField :disabled="loading"
Expand Down
1 change: 0 additions & 1 deletion src/modals/publication/AddPublicationModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ export default {
reference: '',
license: '',
modified: new Date(),
status: '',
featured: false,
portal: '',
category: '',
Expand Down
30 changes: 15 additions & 15 deletions src/navigation/MainMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ import { navigationStore, catalogiStore, publicationStore } from '../store/store
</template>
</NcAppNavigationItem>

<NcAppSettingsDialog :open.sync="settingsOpen" :show-navigation="true" name="Application settings">
<NcAppSettingsSection id="sharing" name="Connections" doc-url="zaakafhandel.app">
<NcAppSettingsDialog :open.sync="settingsOpen" :show-navigation="true" name="Applicatie instellingen">
<NcAppSettingsSection id="sharing" name="Connecties" doc-url="zaakafhandel.app">
<template #icon>
<Connection :size="20" />
</template>

<p>
Here you can set the details for varius Connections
Hier kunt u de details instellen voor verschillende verbindingen.
</p>
<NcCheckboxRadioSwitch :checked.sync="configuration.mongoStorage" type="switch">
{{ t('forms', 'Use external storage (e.g. MongoDb) instead of Next Cloud internal storage') }}
{{ t('forms', 'Gebruik externe opslag (bijv. MongoDb) in plaats van de interne opslag van Next Cloud.') }}
</NcCheckboxRadioSwitch>
<NcCheckboxRadioSwitch :checked.sync="configuration.cloudStorage" type="switch">
{{ t('forms', 'Use VNG APIs instead of MongoDB') }}
{{ t('forms', 'Gebruik VNG API\'s in plaats van MongoDB.') }}
</NcCheckboxRadioSwitch>
<p>
<table>
Expand Down Expand Up @@ -165,54 +165,54 @@ import { navigationStore, catalogiStore, publicationStore } from '../store/store
</tbody>
</table>
</p>
<NcButton aria-label="Save"
<NcButton aria-label="Opslaan"
type="primary"
wide
@click="saveConfig(); feedbackPosition = 'top'">
<template #icon>
<ContentSave :size="20" />
</template>
Save
Opslaan
</NcButton>
<div v-if="feedbackPosition === 'top' && configurationSuccess !== -1">
<NcNoteCard :type="configurationSuccess ? 'success' : 'error'">
<p>
{{ configurationSuccess ?
'Success saving configuration' :
'Failed saving configuration'
'Configuratie succesvol opgeslagen.' :
'Opslaan van configuratie mislukt.'
}}
</p>
</NcNoteCard>
</div>
</NcAppSettingsSection>
<NcAppSettingsSection id="organisation" name="Organisation" doc-url="zaakafhandel.app">
<NcAppSettingsSection id="organisation" name="Organisatie" doc-url="zaakafhandel.app">
<template #icon>
<Connection :size="20" />
</template>

<p>
Here you can set the details for your organisation
Hier kunt u de details voor uw organisatie instellen.
</p>

<NcTextField id="organisationName" :value.sync="configuration.organisationName" />
<NcTextField id="organisationOin" :value.sync="configuration.organisationOin" />
<NcTextArea id="organisationPki" :value.sync="configuration.organisationPki" />

<NcButton aria-label="Save"
<NcButton aria-label="Opslaan"
type="primary"
wide
@click="saveConfig(); feedbackPosition = 'bottom'">
<template #icon>
<ContentSave :size="20" />
</template>
Save
Opslaan
</NcButton>
<div v-if="feedbackPosition === 'bottom' && configurationSuccess !== -1">
<NcNoteCard :type="configurationSuccess ? 'success' : 'error'">
<p>
{{ configurationSuccess ?
'Success saving configuration' :
'Failed saving configuration'
'Configuratie succesvol opgeslagen.' :
'Opslaan van configuratie mislukt.'
}}
</p>
</NcNoteCard>
Expand Down
Loading