Hello,
WPML answer me,
”
The “textdomain” corresponds to an identifier that is added with the strings to be translated in order to group them and sort them later.
If you open your theme file (single.php for example), you should see excerpts of this type:
__ (‘This is my string to translate’, ‘textdomain)
This is a gettext () function to which one passes two parameters: the string to be translated and its context. If the function is a translation in this context, it will return the translation. Otherwise, it will return the original string.
In your case, you can find this “textdomain” by browsing the files in your theme or by opening your style.css file in the root of your theme. Normally this comprant a header file with the textdomain comment.
That said, the style.css file is accessible and I did not find any mention textdomain. So it will search the php file of your theme.
”
What ‘textdomain’ name should I go to load your .mo files?
thank you in advance for your reply,