William Holmes
William Holmes
@snene @Slapbox Do you think it's possible to add these spelling mistake corrections to the initial context menu (first click) ?
Thanks @snene i’ll try that. Im still trying to figure out how to change the electron browser context menu (copy, paste, etc.) language as that is where the spelling corrections...
@snene @Slapbox  Any ideas how to change that electron browser context menu to another language?
Thanks for he reply. I’ve opened a issue/question to the wider community for some feed back. https://github.com/electron-userland/electron-spellchecker/issues/114
*FYI* Found it. https://github.com/electron-userland/electron-spellchecker/issues/114#issuecomment-384394832
@Slapbox Potential Hack: you could override the [ContextMenuBuilder.isSrcUrlValid](https://github.com/electron-userland/electron-spellchecker/blob/master/src/context-menu-builder.js#L315) function and also check for non base64 url.
@Slapbox I've been overriding the addCopy function successfully so it should also work for you. [My original issue](https://github.com/electron-userland/electron-spellchecker/issues/115) hasn't been reviewed. I don't think this repo is being maintained which...
I ended up extending the ContextMenuBuilder, including ... ```javascript addCopy (menu, menuInfo) { const { editFlags: { canCopy } } = menuInfo; return canCopy ? super.addCopy(menu, menuInfo) : menu; }...
@jacalata Did you get any further with implementing a pseudo localization bundle? I was hoping to start implementing something similar to check if any strings are concatenated or hard coded...
@rxaviers I would have thought a pseudo build would be a common use case for large application builds/process. Is there any future plans or suggestions what we might do until...