# Plugin translations

**URL:** https://meta.discourse.org/t/plugin-translations/53048
**Category:** Development
**Created:** [November 17, 2016, 10:14pm UTC](https://meta.discourse.org/t/plugin-translations/53048 "2016-11-17T22:14:03Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![kgish](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/kgish/32/121131_2.png) [@kgish](https://meta.discourse.org/u/kgish)
#### Post date: [November 17, 2016, 10:14pm UTC](https://meta.discourse.org/t/plugin-translations/53048/1 "2016-11-17T22:14:03Z")

</div>

I’ve been able to add a new menu item to the admin dashboard, but for some reason it’s not catching my translation.

Instead of the menu item with the right text, I see:

```plaintext
[nl.myplugin.admin.menu_title]

```

My translation file `plugins/myplugin/config/locales/client.nl.yml` looks like this:

```plaintext
nl:
  js:
    myplugin:  
      dummy: "Hey dummy!"
      admin:
        menu_title: "Menu title"
        page_title: "Page title"

```

Anything I’m doing wrong?

---

<div class="post-metadata">

### Author: ![gdpelican](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/gdpelican/32/81308_2.png) [@gdpelican](https://meta.discourse.org/u/gdpelican)
#### Post date: [November 17, 2016, 10:44pm UTC](https://meta.discourse.org/t/plugin-translations/53048/2 "2016-11-17T22:44:35Z")

</div>

I usually have to clear out the `tmp` folder in my discourse project folder in order for it to catch my translations.

---

<div class="post-metadata">

### Author: ![kgish](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/kgish/32/121131_2.png) [@kgish](https://meta.discourse.org/u/kgish)
#### Post date: [November 18, 2016, 10:01am UTC](https://meta.discourse.org/t/plugin-translations/53048/3 "2016-11-18T10:01:44Z")

</div>

Wow, that did the trick, thanks for saving my life!
