Upgrade to Pro — share decks privately, control downloads, hide ads and more …

GWTD: How translations work in WordPress

GWTD: How translations work in WordPress

Slides of my session at the 2nd Global WordPress Translation Day on November 12th, 2016.

Dominik Schilling

November 12, 2016
Tweet

More Decks by Dominik Schilling

Other Decks in Programming

Transcript

  1. Or: One guy tries to explain a system which makes

    WordPress for ~50% of its user base available in their native language. Dominik Schilling @ocean90
  2. #: wp-includes/admin-bar.php:743 msgid "%s comment awaiting moderation" msgid_plural "%s comments

    awaiting moderation" msgstr[0] "" msgstr[1] "" Portable Object Template (POT)
  3. MakePOT • CLI tool for PHP to create POT files

    for • WordPress Core • Plugins • Themes • WordPress.org projects • Open source: https://github.com/ocean90/wp-i18n-tools/blob/master/makepot.php • Similar to Poedit but supports additional header fields for plugins and themes
  4. MakePOT $ crontab -l | grep generate-pot 10 * *

    * * /bin/sh /home/wporg/bin/generate-pot.sh wp /home/wporg/co 25 * * * * /bin/sh /home/wporg/bin/generate-pot.sh wpthemes /home/wporg/co 30 * * * * /bin/sh /home/wporg/bin/generate-pot.sh wporg /home/wporg/co 40 * * * * /bin/sh /home/wporg/bin/generate-pot.sh rosetta /home/wporg/co 50 * * * * /bin/sh /home/wporg/bin/generate-pot.sh wordcamporg /home/wporg/co • Runs on a cron job every hour • Custom wrapper generate-pot.sh • Updates SVN checkouts • Commits POT files to i18n.svn.wordpress.org
  5. GlotPress • Since January 18, 2016 a WordPress Plugin •

    https://wordpress.org/plugins/glotpress/ • Lets you set up your own collaborative, web-based software translation tool • Previously powered by the deprecated BackPress library • 33 contributors • Leads: Nikolay Bachiyski, Marko Heijnen, Greg Ross, Dominik Schilling • Developed on GitHub: https://github.com/GlotPress/GlotPress-WP
  6. Import of POT files $ crontab -l | grep update-originals

    59 * * * * /bin/sh /home/wporg/bin/update-originals-wp.sh /home/wporg/co /home/ wporg/public_html/wp-content/plugins/glotpress • Importer runs on a cron job every hour • Wrapper for GlotPress’ default CLI importer • Slack notification in #polyglots channel
  7. .po - Portable Object # Translation of 4.6.x in Moroccan

    Arabic # This file is distributed under the same license as the 4.6.x package. msgid "" msgstr "" "PO-Revision-Date: 2016-09-21 10:19:10+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: GlotPress/2.1.0-alpha\n" "Project-Id-Version: 4.6.x\n" #: wp-includes/admin-bar.php:334 wp-includes/admin-bar.php:414 #: wp-includes/admin-bar.php:481 wp-includes/deprecated.php:2792 #: wp-includes/deprecated.php:2794 msgid "Dashboard" msgstr "ﺔﯿﺴﯿﺋﺮﻟا"
  8. .mo - Machine Object de12 0495 0000 0000 0200 0000

    1c00 0000 2c00 0000 0500 0000 3c00 0000 0000 0000 5000 0000 0900 0000 5100 0000 4001 0000 5b00 0000 1000 0000 9c01 0000 0100 0000 0000 0000 0000 0000 0000 0000 0200 0000 0044 6173 6862 6f61 7264 0050 4f2d 5265 7669 7369 6f6e 2d44 6174 653a 2032 3031 362d 3039 2d32 3120 3130 3a31 393a 3130 2b30 3030 300a 4d49 4d45 2d56 6572 7369 6f6e 3a20 312e 300a 436f 6e74 656e 742d 5479 7065 3a20 7465 7874 2f70 6c61 696e 3b20 6368 6172 7365 743d 5554 462d 380a 436f 6e74 656e 742d 5472 616e 7366 6572 2d45 6e63 6f64 696e 673a 2038 6269 740a 506c 7572 616c 2d46 6f72 6d73 3a20 6e70 6c75 7261 6c73 3d36 3b20 706c 7572 616c 3d6e 3d3d 3020 3f20 3020 3a20 6e3d 3d31 203f 2031 203a 206e 3d3d 3220 3f20 3220 3a20 6e25 3130 303e 3d33 2026 2620 6e25 3130 303c 3d31 3020 3f20 3320 3a20 6e25 3130 303e 3d31 3120 2626 206e 2531 3030 3c3d 3939 203f 2034 203a 2035 3b0a 582d 4765 6e65 7261 746f 723a 2047 6c6f 7450 7265 7373 2f32 2e31 2e30 2d61 6c70 6861 0a50 726f 6a65 6374 2d49 642d 5665 7273 696f 6e3a 2034 2e36 2e78 0a00 d8a7 d984 d8b1 d8a6 d98a d8b3 d98a d8a9 00
  9. WordPress ❤ Language Packs • Translations are stored in wp-content/languages

    • Translations are auto-updated • Translations are installed on-the-fly when switching your site language • Translations are installed asynchronously during other updates
  10. Requirements • The plugin/theme uses a proper text domain registration

    • Text domain is the same as the plugin/theme slug • Exception for WordPress 4.6+ • The plugin/theme is hosted in the official WordPress directory • Nothing more.
  11. Good to know • Follow the #meta-language-packs channel on Slack

    • Language packs are updated 30 minutes after a change • Languages packs are generated if a project is 95% or more translated
  12. Good to know • Check the status by visiting the

    Language Packs page of your project on translate.wordpress.org
  13. 0 5000000 10000000 15000000 20000000 25000000 30000000 2010 2011 2012

    2013 2014 2015 2016 605681 708589 901790 1233869 1692593 21674064 9586107
  14. GlotPress • x+1 (now): Locale glossaries, JavaScript Localization • x+2:

    Notes/Comments/Reject with feedback, Notifications • x+3: REST API • x+4: Theme/Templates/Design • x+5: Translation Memory
  15. Language Packs • Faster updates, just like for plugins/themes •

    Reduce the number of complex packages • my_MM, ja , far_IR, hu_HU, sr_RS, zh_CN • Make automatic release builds more … automatic • Move readme.html to translate.wordpress.org • No SVN