i18n: localize aria-label (delete_notes)

This commit is contained in:
Panagiotis Papadopoulos 2024-12-16 20:38:06 +01:00
parent 3d18f56c33
commit 2b22b8ea99
2 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const TPL = `
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">${t('delete_notes.delete_notes_preview')}</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t('delete_notes.close')}"></button>
</div>
<div class="modal-body">
<div class="form-checkbox">

View File

@ -82,6 +82,7 @@
},
"delete_notes": {
"delete_notes_preview": "Delete notes preview",
"close": "Close",
"delete_all_clones_description": "Delete also all clones (can be undone in recent changes)",
"erase_notes_description": "Normal (soft) deletion only marks the notes as deleted and they can be undeleted (in recent changes dialog) within a period of time. Checking this option will erase the notes immediately and it won't be possible to undelete the notes.",
"erase_notes_warning": "Erase notes permanently (can't be undone), including all clones. This will force application reload.",