From 2997ee51b68e8a06705c9340532e0e7606fd8f08 Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Wed, 7 Jan 2026 13:11:31 +0100 Subject: [PATCH] fix: Escape apostrophe in French text string (v0.6.0-r19) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed JavaScript syntax error at line 163 in help.js - Escaped single quote in "l'équipe" within single-quoted string - Error: "missing ) after argument list" when loading help page - Changed _('Écrire à l'équipe') to _('Écrire à l\'équipe') 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .../htdocs/luci-static/resources/view/secubox/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-secubox/htdocs/luci-static/resources/view/secubox/help.js b/luci-app-secubox/htdocs/luci-static/resources/view/secubox/help.js index b14b6dd5..ee045b2a 100644 --- a/luci-app-secubox/htdocs/luci-static/resources/view/secubox/help.js +++ b/luci-app-secubox/htdocs/luci-static/resources/view/secubox/help.js @@ -160,7 +160,7 @@ return view.extend({ 'href': 'mailto:contact@cybermind.fr?subject=SecuBox%20Feedback' }, [ E('span', { 'class': 'sb-help-icon' }, '✉️'), - E('span', { 'class': 'sb-help-label' }, _('Écrire à l'équipe')) + E('span', { 'class': 'sb-help-label' }, _('Écrire à l\'équipe')) ]) ]) ]);