i18n: Fix duplication in delete relations count

This commit is contained in:
Elian Doran
2024-10-19 10:55:48 +03:00
parent 815eab26f6
commit 29a700f731
6 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ const TPL = `
</div>
<div class="delete-notes-list-wrapper">
<h4>${t('delete_notes.notes_to_be_deleted', { noteCount: `<span class="deleted-notes-count"></span>` })}</h4>
<h4>${t('delete_notes.notes_to_be_deleted', { noteCount: '<span class="deleted-notes-count"></span>' })}</h4>
<ul class="delete-notes-list" style="max-height: 200px; overflow: auto;"></ul>
</div>
@@ -36,7 +36,7 @@ const TPL = `
<div class="broken-relations-wrapper">
<div class="alert alert-danger">
<h4>${t('delete_notes.broken_relations_to_be_deleted')} (<span class="broke-relations-count"></span>)</h4>
<h4>${t('delete_notes.broken_relations_to_be_deleted', { relationCount: '<span class="broke-relations-count"></span>'})}</h4>
<ul class="broken-relations-list" style="max-height: 200px; overflow: auto;"></ul>
</div>