craftcms / redactor

Edit rich text content in Craft CMS using Redactor by Imperavi.
https://plugins.craftcms.com/redactor
MIT License
100 stars 48 forks source link

Dutch translation for "Link to an asset" missing #455

Open rinusvandam opened 1 year ago

rinusvandam commented 1 year ago

Description

There's a Dutch translation missing when adding a link. See the attached screenshot. The translation should be: "Link to an asset" -> "Link naar een bestand". I tried adding it myself, but I couldn't find the string in lib/redactor/_langs/nl.js.

Additional info

Scherm­afbeelding 2023-03-23 om 09 04 42

msbit commented 1 year ago

I imagine it should go in this file:

https://github.com/craftcms/redactor/blob/main/src/translations/nl/redactor.php

rbrv commented 1 year ago

FWIW, a workaround is to add a new file translations/nl/redactor.php, with

<?php

return [
    'Link to an asset' => 'Link naar een bestand',
];