Change en translation from deny to reject.

This commit is contained in:
elweyn 2023-01-24 15:47:31 +01:00
parent 4f85b8508d
commit 2291cc813e
2 changed files with 4 additions and 4 deletions

View File

@ -251,10 +251,10 @@ describe('CreationConfirm', () => {
}) })
}) })
describe('decline creation with success', () => { describe('deny creation with success', () => {
let spy let spy
describe('admin confirms decline', () => { describe('admin confirms deny', () => {
beforeEach(async () => { beforeEach(async () => {
spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm') spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm')
spy.mockImplementation(() => Promise.resolve('some value')) spy.mockImplementation(() => Promise.resolve('some value'))
@ -278,7 +278,7 @@ describe('CreationConfirm', () => {
}) })
}) })
describe('admin cancels decline', () => { describe('admin cancels deny', () => {
beforeEach(async () => { beforeEach(async () => {
spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm') spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm')
spy.mockImplementation(() => Promise.resolve(false)) spy.mockImplementation(() => Promise.resolve(false))

View File

@ -42,7 +42,7 @@
"communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.", "communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.",
"confirm": "confirmed", "confirm": "confirmed",
"deleted": "deleted", "deleted": "deleted",
"denied": "deleted", "denied": "rejected",
"in_progress": "There is a question from the moderators.", "in_progress": "There is a question from the moderators.",
"myContributionNoteList": "You can edit or delete entries that have not yet been confirmed at any time.", "myContributionNoteList": "You can edit or delete entries that have not yet been confirmed at any time.",
"pending": "Submitted and waiting for confirmation" "pending": "Submitted and waiting for confirmation"