Velten Heyn
Velten Heyn
You can add following script to your npm script section: `"node-modules": "DIR=node_modules/quill-image-drop-module && babel $DIR/src --out-dir $DIR/dist --source-maps",` it's a hack but it works
~~Could it be that the first line is the translation? I recorded in german but my first line was in english~~ I didn't set language to auto, thats why it...
I just experienced the same issue.
But the code changed a bit since then. The current unfixed code is: ``` editor.on('mousedown', function (e) { if (isMacWebKit() && e.button === 2 && !isNativeOverrideKeyEvent(e)) { if (editor.selection.isCollapsed()) {...
A quick fix is to use e.clientX-1 as doc.caretRangeFromPoint(clientX, clientY); otherwise returns the first link of the context menu.
@jayarjo Do you think the quick fix is good enough for a merge request or should another approach be taken?
Or alternatively by the phone number
I think we agree that there are different UseCases. In our case by using te we want to know if a translation exists and if there is a translation fallback....
As far as I know you can define multiple fallback levels (de-DE-BR -> de-AT -> de -> en). So it would need to be iterative. Edit: https://vue-i18n.intlify.dev/guide/essentials/fallback.html#explicit-fallback-with-decision-maps
Thinking about it. I actually don't care about the te function. Because in my eyes it is more efficient to directly try to translate and check if I got the...