new language

This commit is contained in:
Jacob Overgaard
2024-03-14 16:43:33 +01:00
parent 6271acfc57
commit 330ffa55f4
2 changed files with 8 additions and 0 deletions

View File

@@ -2124,6 +2124,10 @@ export default {
'This item or its descendants is being referenced. Unpublishing can lead to broken links on your website. Please take the appropriate actions.',
deleteDisabledWarning: 'This item or its descendants is being referenced. Therefore, deletion has been disabled.',
listViewDialogWarning: 'The following items you are trying to %0% are referenced by other content.',
labelMoreReferences: (count: number) => {
if (count === 1) return '...og en mere';
return `...og ${count} andre`;
},
},
logViewer: {
deleteSavedSearch: 'Slet gemte søgning',

View File

@@ -2172,6 +2172,10 @@ export default {
'This item or its descendants is being referenced. Unpublishing can lead to broken links on your website. Please take the appropriate actions.',
deleteDisabledWarning: 'This item or its descendants is being referenced. Therefore, deletion has been disabled.',
listViewDialogWarning: 'The following items you are trying to %0% are referenced by other content.',
labelMoreReferences: (count: number) => {
if (count === 1) return '...and one more item';
return `...and ${count} more items`;
},
},
logViewer: {
deleteSavedSearch: 'Delete Saved Search',