How does Gutenberg handle translations in React?
How does Gutenberg handle translations in React?
I was going through the source code of Gutenberg, for e.g. this and cannot understand how they handle translations...
They do import this import __ from '@wordpress/i18n'
and then in the source code they use this speak( __( 'Block settings closed' ) );
.
import __ from '@wordpress/i18n'
speak( __( 'Block settings closed' ) );
Can anybody tell me how they manage these translations within ReactJS to be collected in a normal .po file?
I suppose they have some build process which goes through all of the files, including JS and collects them, but now sure.
2 Answers
2
In the Gutenberg's GitHub repository you can see the source of the i18n package that is used. In this source, you'll see Jed getting imported (line 4 of gutenberg/packages/i18n/src/index.js) and then being used for most of the translation tasks under the hood.
Jed introduces the "Gettext Style i18n for Modern JavaScript Apps" (or at least so it says on their site).
Your question is for the .po files. Jed explains on their site:
There are quite a few available .po to .json converters out there. Gettext .po files are standard output from most decent translation companies, as it's an old standard.
I currently use: po2json
However, I'd like to add this functionality to a separate Jed module in a future version.
However, this does not seem to apply here.
Further digging turns out, setLocaleData( data: Object, domain: string )
is used to pass the translations, in a manner like so:
setLocaleData( data: Object, domain: string )
$locale_data = gutenberg_get_jed_locale_data( 'gutenberg' );
wp_add_inline_script(
'wp-i18n',
'wp.i18n.setLocaleData( ' . json_encode( $locale_data ) . ' );'
);
(gutenberg_get_jed_locale_data( $domain )
being more or less a wrapper for get_translations_for_domain( $domain )
)
gutenberg_get_jed_locale_data( $domain )
get_translations_for_domain( $domain )
So it seems WordPress retrieves the translation data via PHP and then passes it to Jed. Jed itself does not seem to load any translation files.
The package's readme also explains how to properly generate the .pot file containing the localized strings.
The package also includes a pot-to-php
script used to generate a php files containing the messages listed in a .pot file. This is useful to trick WordPress.org translation strings discovery since at the moment, WordPress.org is not capable of parsing strings directly from JavaScript files.
pot-to-php
npx pot-to-php languages/myplugin.pot languages/myplugin-translations.php text-domain
window
wp_add_inline_script
@Bologer Not necessarily a
window
property, but yes. PHP retrieves the values and passes them to JS via wp_add_inline_script
– kero
Aug 22 at 6:42
window
wp_add_inline_script
you should expand you answer with the information you added in the comment to mine. That comment actually seems to be more in line with what the OP looks for
– Mark Kaplun
Aug 22 at 6:53
@MarkKaplun Thanks, just edited it in
– kero
Aug 22 at 6:59
At least for now, as long as there is no better automated process, I would suggest not to generate .pot files from JS at all.
As @kero explains in his answer right now GB translations are being passed as a kind of blob array from the .mo file into JS. This workflow will break all localization tampering plugins which rely on filtering the results of __
and associates. A better workflow will be to have an explicit generation of the blob array from strings being translated with __
calls, similar to how you would do JS translation in non GB context. This will also solve the issue of generating .pot files.
__
__
What is missing here is some automated process that will run over JS files and produce he relevant PHP code, which in turn can be analyzed by tools like poedit.
About your last paragraph: "includes a
pot-to-php
script used to generate a php files containing the messages listed in a .pot file. This is useful to trick WordPress.org translation strings discovery"– kero
Aug 22 at 6:46
pot-to-php
nice starting point, only part left is to auto generate the call to wp_add_inline_script, as right now it probably just generate php just for the benefit of pot generation, but do not actually use it (my guess)
– Mark Kaplun
Aug 22 at 6:48
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Does it mean that Gutenberg stores translations in some
window
property as JSON loaded viawp_add_inline_script
by PHP and then retrieves it on React side and passes it to Jed? ... and Jed does further magic?– Bologer
Aug 22 at 6:31