i18n + autoformat

This commit is contained in:
ItsLemmy
2025-11-21 13:18:02 -05:00
parent c5b23cc291
commit a884f012d8
16 changed files with 480 additions and 445 deletions
+4 -7
View File
@@ -44,8 +44,8 @@ Item {
const conn = active[i];
items.push({
"label": I18n.tr("context-menu.disconnect-vpn", {
"name": conn.name
}),
"name": conn.name
}),
"action": "disconnect:" + conn.uuid,
"icon": "shield-off"
});
@@ -55,8 +55,8 @@ Item {
const conn = inactive[i];
items.push({
"label": I18n.tr("context-menu.connect-vpn", {
"name": conn.name
}),
"name": conn.name
}),
"action": "connect:" + conn.uuid,
"icon": "shield-lock"
});
@@ -138,6 +138,3 @@ Item {
}
}
}