i18n: wrap UI strings with __() (components/pages/modals)

This commit is contained in:
Youssef
2025-08-09 18:56:47 -04:00
parent 9a77b716a1
commit 718657f493
14 changed files with 53 additions and 53 deletions

View File

@@ -32,13 +32,13 @@
"
:options="[
{
label: 'Edit',
label: __('Edit'),
onClick() {
reply.editable = true
},
},
{
label: 'Delete',
label: __('Delete'),
onClick() {
deleteReply(reply)
},