libraries-override for localization

Created on 28 January 2025, 2 months ago

Problem/Motivation

I am attempting to override the "opens in new window" text to give a little more precise help of how to improve it with our editing environment. I was pleasantly surprised to find a section in the module README that addresses this, saying:

### You don't like the default error messages

* Feel welcome to override localization.js by adding this to your theme's .info
file, just note that you may need to update your file when installing future
versions of Editoria11y:

```
libraries-override:
'editoria11y/editoria11y':
js:
js/editoria11y-localization.js: js/MY-LOCAL-THEME-VERSION-OF-THE-SAME.js
```

Unfortunately, I have not been able to get it to work.

Steps to reproduce

I have tried several varieties of adding a libraries-override section to my theme's .info file, none of which have worked. For example:

The version in the README:

libraries-override:
  'editoria11y/editoria11y':
    js:
      js/editoria11y-localization.js: js/editoria11y-localization.js

Same but without quotes, which aligns with any other examples I can find of using libraries-override:

libraries-override:
  editoria11y/editoria11y:
    js:
      js/editoria11y-localization.js: js/editoria11y-localization.js

Then I looked at the editoria11y.libraries.yml and saw the editoria11y-localization.js file is not in the editoria11y library, but in the editoria11y-localization library. So I tried with that instead:

libraries-override:
  editoria11y/editoria11y-localization:
    js:
      js/editoria11y-localization.js: js/editoria11y-localization.js

And again with the quotes:

libraries-override:
  'editoria11y/editoria11y-localization':
    js:
      js/editoria11y-localization.js: js/editoria11y-localization.js

My theme is a subtheme of another theme, but that top level theme is not overriding the library at all, so things like this issue https://www.drupal.org/project/drupal/issues/2642122 πŸ› Overriding already overridden libraries-override requires knowledge of previous libraries-overrides Needs work shouldn't apply. I did try that patch there and using the full path to the editoria11y JS as well, with no luck either.

I am clearing caches between each try, and opening up a new private/incognito window as well.

Any ideas what I might still be missing?

πŸ’¬ Support request
Status

Active

Version

2.2

Component

Documentation

Created by

πŸ‡¨πŸ‡¦Canada ryanrobinson_wlu

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @ryanrobinson_wlu
  • πŸ‡ΊπŸ‡ΈUnited States itmaybejj

    Oh dear; looking at this...I think I need to update that documentation, because the library is aggregating the minimized JS file now, so doing it that way is going to get more complicated...

    If you only need to override one, it would probably be easiest to just to override it at runtime; this could go in any theme JS.

    // Listen for event
    
    const overrideEd11y = function() {
      Ed11y.M.linkNewWindow = {
          title: 'Manual check: is opening a new window expected?',
          tip: () =>
            `<p>Readers can always choose to open a link a new window. When a link forces open a new window, it can be confusing and annoying, especially for assistive device users who may wonder why their browser's "back" button is suddenly disabled.</p>
                    <p>There are two general exceptions:</p>
                    <ul>
                        <li>When the user is filling out a form, and opening a link in the same window would cause them to lose their work.</li>
                        <li>When the user is clearly warned a link will open a new window.</li>
                    </ul>
                    <p><strong>To fix:</strong> set this link back its default target, or add a screen-reader accessible warning (text or an icon with alt text).</p>
                    `,
        },
      document.removeEventListener('ed11yResults', overrideEd11y);
    }
    
    document.addEventListener('ed11yResults', overrideEd11y);
    
    
  • πŸ‡¨πŸ‡¦Canada ryanrobinson_wlu

    I believe that worked, thank you! Do you want to leave this open as a reminder to update the README, or go ahead and close it?

  • πŸ‡ΊπŸ‡ΈUnited States itmaybejj

    Great!

    Yeah I'll leave this open so I remember to include this in the next release.

Production build 0.71.5 2024