Fix eng phrase

This commit is contained in:
itdoginfo
2025-06-25 23:32:33 +03:00
parent e7b726d27c
commit 1fd67eefb3
3 changed files with 6 additions and 6 deletions

View File

@@ -726,7 +726,7 @@ async function updateDiagnostics() {
updateTextElement('fakeip-browser-status',
E('span', { style: `color: ${result.error ? constants.STATUS_COLORS.WARNING : result.color}` }, [
result.error ? '! ' : result.state === 'working' ? '✔ ' : result.state === 'not_working' ? '✘ ' : '! ',
result.error ? 'check error' : result.state === 'working' ? _('works in browser') : _('not works in browser')
result.error ? 'check error' : result.state === 'working' ? _('works in browser') : _('does not work in browser')
])
);
});
@@ -735,7 +735,7 @@ async function updateDiagnostics() {
updateTextElement('fakeip-router-status',
E('span', { style: `color: ${result.error ? constants.STATUS_COLORS.WARNING : result.color}` }, [
result.error ? '! ' : result.state === 'working' ? '✔ ' : result.state === 'not_working' ? '✘ ' : '! ',
result.error ? 'check error' : result.state === 'working' ? _('works on router') : _('not works on router')
result.error ? 'check error' : result.state === 'working' ? _('works on router') : _('does not work on router')
])
);
});