translation - How to extract translatable (double underscores and _e) strings?

admin2025-06-05  2

I made a custom theme and wonder how could I extract all translatable strings to a .po file so I can translate it. Do I need WPML plugin?

Ex: I have a string "soccer" which is written as _e('soccer','mytheme'); and I want to translate it to "futebol" but how can I transport it to a .po file?

I made a custom theme and wonder how could I extract all translatable strings to a .po file so I can translate it. Do I need WPML plugin?

Ex: I have a string "soccer" which is written as _e('soccer','mytheme'); and I want to translate it to "futebol" but how can I transport it to a .po file?

Share Improve this question asked Jun 28, 2014 at 22:03 Rico LettermanRico Letterman 2371 gold badge3 silver badges15 bronze badges 1
  • Check this post – Pieter Goosen Commented Jun 29, 2014 at 10:22
Add a comment  | 

2 Answers 2

Reset to default 3

One way is to use the WordPress i18n tools. I had to checkout WordPress trunk to make it work. On the command line:

svn co http://develop.svn.wordpress/trunk

once you have trunk somewhere, you'll then want to call the makepot script. Again, on the command line:

php /path/to/wordpress/trunk/tools/i18n/makepot.php wp-theme /path/to/your/theme/

After that script has run, the pot files will be in whatever directory was specified in the above /path/to/your/theme

More information and a couple of other methods can be seen here: http://codex.wordpress/I18n_for_WordPress_Developers

You can extract traslatable (gettext) strings from a Wordpress Theme or Plugin with wp-cli. To install:

  • Visit oficial documentation.
  • Use Homebrew (mac): brew install wp-cli

Once you have it, you run the following command:

wp i18n . path/to/domain_name.pot --domain=domain_name

(Run from the theme/plugin root folder, where domain_name is the domain you've used on the code.)

This will generate a .pot file. You can use software like POEdit to open the .pot file and do the translations. This software will then let you export to .po and .mo.

You can find more info on I18n for Wordpress Developers.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749095743a316326.html

最新回复(0)