fix: Escape apostrophe in French text string (v0.6.0-r19)
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
6b7436783d
commit
2997ee51b6
@ -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'))
|
||||
])
|
||||
])
|
||||
]);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user