Skip to content

Commit

Permalink
english to dutch
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Jan 17, 2025
1 parent a97ad60 commit bdacfc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modals/menu/EditMenuModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getTheme } from '../../services/getTheme.js'
size="normal"
:can-close="false">
<NcNoteCard v-if="success" type="success">
<p>Menu successfully modified</p>
<p>Menu succesvol bewerkt</p>
</NcNoteCard>
<NcNoteCard v-if="error" type="error">
<p>{{ error }}</p>
Expand All @@ -21,7 +21,7 @@ import { getTheme } from '../../services/getTheme.js'
<template #icon>
<Cancel :size="20" />
</template>
{{ success ? 'Close' : 'Cancel' }}
{{ success ? 'Sluiten' : 'Annuleren' }}
</NcButton>
<NcButton v-if="!success"
:disabled="loading"
Expand All @@ -32,7 +32,7 @@ import { getTheme } from '../../services/getTheme.js'
<ContentSaveOutline v-if="!loading && menuStore.menuItem?.id" :size="20" />
<Plus v-if="!loading && !menuStore.menuItem?.id" :size="20" />
</template>
{{ menuStore.menuItem?.id ? 'Save' : 'Add' }}
{{ menuStore.menuItem?.id ? 'Opslaan' : 'Toevoegen' }}
</NcButton>
</template>

Expand Down

0 comments on commit bdacfc4

Please sign in to comment.