# Export overriden translations in the admin panel to a file

**URL:** https://meta.discourse.org/t/export-overriden-translations-in-the-admin-panel-to-a-file/55028
**Category:** Feature
**Created:** [1 בינואר,‏ 2017,‏ 2:33pm UTC](https://meta.discourse.org/t/export-overriden-translations-in-the-admin-panel-to-a-file/55028 "2017-01-01T14:33:43Z")
**Posts on this page:** 2
**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: [1 בינואר,‏ 2017,‏ 2:33pm UTC](https://meta.discourse.org/t/export-overriden-translations-in-the-admin-panel-to-a-file/55028/1 "2017-01-01T14:33:44Z")

</div>

this will be the least important feature needed ever, but if one can easily **export** the translations added to customize panel, or **import** strings from a table to this panel; then he can simply share it on github and it would be much easier than transifex for translation of foreign discourses.

---

<div class="post-metadata">

### Author: ![Alavi1412](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alavi1412/32/67721_2.png) [@Alavi1412](https://meta.discourse.org/u/Alavi1412)
#### Post date: [2 בינואר,‏ 2017,‏ 7:19am UTC](https://meta.discourse.org/t/export-overriden-translations-in-the-admin-panel-to-a-file/55028/2 "2017-01-02T07:19:40Z")

</div>

at first enter database :

`rails db`  
(if not in development enviroment run`./launcher enter app` before this code)

by runnig this code:

`SELECT * FROM translation_overrides INTO OUTFILE '/home/mydata';`

all data in translation\_overrides table will be exported to a text file in /home/madata folder.

NOTE: you should have permission to write in this folder.
