Skip to content

HTML overlays #11

Description

@tobyzerner

Would be great to include a utility to overlay translations onto DOM, as per https://github.com/projectfluent/fluent.js/wiki/DOM-Overlays.

Obviously in PHP we work with HTML strings rather than the DOM itself, so the API would be slightly different.

In my abandoned fluent-php library, I had a 1:1 port of this functionality working with this API:

Overlay::translateHtml(
    '<p><img data-l10n-name="world" src="world.png"></p>',
    [
        'value' => 'Hello, <img data-l10n-name="world" alt="world">!', 
        'attributes' => ['title' => 'Hello']
    ]
);
// → <p title="Hello">Hello, <img data-l10n-name="world" alt="world" src="world.png">!</p>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions