hi

i'm searching where are module translations after import in drupal by admin backoffice ...and i dont find them !!! i would translate one installation then import/export the table content to other installations of drupal..

thanks for helping

Comments

rsushil’s picture

I was also looking for the same information some time back but could not locate that in drupal database. I also thought locale (src/target) table will have some trace of the localization data but it stores only link . My guess would be drupal always fetch that data from file.

aiphes’s picture

you found the right tables but i think it's possible to import/export theme with backup & migrate module with selecting right tables and datas..i will try some tests i hope soon.

Dev Server Shared Hosting
8 websites powered by drupal 6,8 & 9 - Hosted by Always Data

tomfallowfield’s picture

they are stored in the node table

column `tnid` denotes which node each node is a translation of

if it's the original it has its own nid in the tnid column

andrezstar’s picture

locales_source
locales_target

spyq’s picture

There are nothing useful information about translation in the database at all, cuz all of the translation strings are stored in Hex

wusel’s picture

You can add the module Translation template extractor (https://www.drupal.org/project/potx) and then export the ".po" file with your translations.

Add the module Translation template extractor on the next installation of drupal.
Then import your translation on that installation of drupal.

Good luck!

Wusel