# Can't find the "esc" string in the admin customize text panel

**URL:** <https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883>\
**Category:** Support\
**Created:** [5 april 2020 om 08:55 UTC](https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883 "2020-04-05T08:55:01Z")\
**Posts on this page:** 4\
**Page:** 1

<div class="post-metadata">

**Author:** ![Pad\_Pors](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pad_pors/32/52016_2.png) [@Pad\_Pors](https://meta.discourse.org/u/Pad_Pors)\
**Post date:** [5 april 2020 om 08:55 UTC](https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883/1 "2020-04-05T08:55:01Z")

</div>

I want to translate the “esc” string in the admin panel, but it seems not to be there.

I mean the **esc** that is written top right of the blue message in the composer (it’s in several similar educational messages):

 ![image](https://global.discourse-cdn.com/meta/original/3X/a/d/adfc1e03d10f8c78d40568471183afd65155bf1c.png)

can someone help me if you know the code.name of the string?

---

<div class="post-metadata">

**Author:** ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)\
**Post date:** [5 april 2020 om 09:04 UTC](https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883/2 "2020-04-05T09:04:14Z")

</div>

The reason you can’t find it is because we’re not using an actual string here, but we should be.

It’s currently set in CSS here

[discourse/app/assets/stylesheets/desktop/compose.scss at 62ebfbbb67f75d6e09955f5ef56f2abd62fd6da5 · discourse/discourse · GitHub](https://github.com/discourse/discourse/blob/62ebfbbb67f75d6e09955f5ef56f2abd62fd6da5/app/assets/stylesheets/desktop/compose.scss#L132)

We’ll get that sorted, but you can add this to your theme if you want a quick fix.

```scss
.composer-popup {
  a.close:before {
    content: "esc"; // change to the desired text
  }
}

```

---

<div class="post-metadata">

**Author:** ![Pad\_Pors](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pad_pors/32/52016_2.png) [@Pad\_Pors](https://meta.discourse.org/u/Pad_Pors)\
**Post date:** [5 april 2020 om 09:05 UTC](https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883/3 "2020-04-05T09:05:17Z")

</div>

thanks 👍 that was handful.

---

<div class="post-metadata">

**Author:** ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)\
**Post date:** [5 mei 2020 om 09:05 UTC](https://meta.discourse.org/t/cant-find-the-esc-string-in-the-admin-customize-text-panel/146883/4 "2020-05-05T09:05:23Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
