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

Internationalization and Localization With PHP ...

Internationalization and Localization With PHP (Cascadia PHP 2024)

What’s today’s date? Is it 07/20/2023 or 20/07/2023? Or maybe it’s 2023/07/20? How many elePHPants do you want to buy? Is it 1,500 or 1.500? Will that be $30,000.00 or 30.000,00 $? We represent dates, times, numbers, and currency in a variety of ways, depending on where we are in the world, and writing software to accommodate these different formats can be scary. It’s worse when you find out you need to put these formatted values inside a translated string like, “Sign up before July 20th, and you’ll get 20% off the regular price of $30,000.” String concatenation and standard placeholders won’t work because different languages and regions follow different rules.

Fortunately, we have tools to make our jobs easier, and in this talk, we’ll take a look at FormatPHP and FormatJS, libraries designed to help with internationalization and localization of web applications. We’ll see how these libraries aid in formatting dates, times, numbers, and currency, as well as messages with plural conditions. We’ll learn how to format messages for translation, and by the end of this talk, you’ll know what a translation management system (TMS) is and how to extract strings from your application to send to your translators.

Ben Ramsey

October 24, 2024
Tweet

More Decks by Ben Ramsey

Other Decks in Programming

Transcript

  1. “Internationalization and localization,” Wikipedia. “Internationalization is the process of designing

    a software application so that it can be adapted to various languages and regions without engineering changes.”
  2. “Internationalization and localization,” Wikipedia. “Localization is the process of adapting

    internationalized software for a specific region or language by translating text and adding locale-specific components.”
  3. I18N & L10N Internationalization & localization ▸ Localization depends on

    the work of internationalization. ▸ Internationalization is the job of programmers. ▸ Localization is the job of copy writers, marketers, product owners, etc.). ▸ Software that has been internationalized can be localized. ▸ Internationalized means it’s ready to adapt to any place. ▸ Localized means it’s ready to use in a speci fi c place.
  4. LOCALIZATION It’s not just translating words into another language ▸

    Converting from one language to another ▸ Using the correct time zone ▸ Displaying prices in the user’s currency and formatting foreign currencies ▸ Formatting dates and times and using the proper calendar system ▸ Formatting numbers ▸ Displaying the proper names for regions, currencies, languages, etc.
  5. INTERNATIONALIZATION Facilitates localization ▸ Ensure that strings/content can be extracted

    and translated ▸ Languages may be used across multiple locales, so ensure numbers, dates/ times, currencies, time zones, country names, etc. render properly for those locales, no matter what language is used. ▸ Ensure translators have context to understand how to translate a string. ▸ Ensure strings have placeholders the translators can understand, and account for plural forms.
  6. COMMON PITFALLS Setting up ▸ Imagine a function with the

    following signature: ▸ Takes a message, looks it up in a translation table of some sort, replaces placeholders with the values, and returns the result. ▸ Assume the application sets a locale at some point, for this to work. function translate(string $message, mixed ...$values): string;
  7. COMMON PITFALLS Dates & times echo translate( 'Your reservation is

    confirmed for %s at %s.', date('F j, Y', $time), date('g:i A', $time), );
  8. COMMON PITFALLS Numbers echo translate( "You've cycled %s miles this

    year.", number_format(3328.2591, 2, '.', ','), );
  9. COMMON PITFALLS Message formatting echo translate( 'There are %d item(s)

    in your order.', $itemCount, ); echo translate('Read ') . $bookTitle . translate(' by ') . $authorName . '.';
  10. COMMON PITFALLS Why they are mistakes, or misguided attempts ▸

    Assumes translation is the only requirement for internationalization. ▸ Assumes number, date, & currency formats are the same across locales. ▸ Assumes country names, month names, etc. are the same across locales. ▸ Assumes all languages follow the same subject-verb-object pattern.
  11. TOOLS OFTEN USED ▸ gettext extension for PHP (via libintl,

    a.k.a. GNU gettext) ▸ Uses PO (portable object) fi les for translations ▸ intl extension for PHP (via libicu) ▸ IMO, both are cumbersome and di ffi cult to use ▸ I’ve not encountered a translation vendor that works with PO fi les
  12. INTRODUCING FormatPHP & FormatJS ▸ FormatJS - formatjs.io - Set

    of JavaScript libraries for use on the client & server (Node.js) ▸ FormatPHP - docs.formatphp.dev - userland PHP library that ports the functionality of FormatJS to PHP ▸ Created for Skillshare, who uses both FormatJS and FormatPHP ▸ Both based on ICU (International Components for Unicode) ▸ Both follow conventions of and provide poly fi lls for ECMA-402
  13. GOALS FOR FORMAT PHP Why create a new library? ▸

    Already decided on FormatJS, a well-supported set of internationalization tools used by many in the JavaScript community. ▸ Wanted a set of PHP tools: ▸ As easy to use as FormatJS. ▸ Shared the same/similar APIs with FormatJS (reduce cognitive load). ▸ Allowed use of the same translation work fl ow and formats.
  14. FEATURES Of FormatPHP & FormatJS ▸ Ability to declare i18n-friendly

    messages (FormatJS, FormatPHP) ▸ Linter that enforces such messages (FormatJS, FormatPHP†) ▸ CLI for extraction & compilation (FormatJS, FormatPHP) ▸ Poly fi lls for ECMA-402 functionality (FormatJS, FormatPHP‡) ▸ Bundler plugin for compiling TypeScript/JavaScript (FormatJS) † Not yet. I’d love to see a PR for a PHP_CodeSni ff er “sni ff ” that provides this functionality. ‡ Sort of. ECMA-402 is a speci fi cation for JavaScript, and FormatPHP provides some of this functionality.
  15. FORMAT PHP intl.php (part 1) use FormatPHP\{Config, FormatPHP, Intl, Message,

    MessageCollection}; $messagesInSpanish = new MessageCollection([ new Message('myMessage', 'Hoy es {ts, date, ::yyyyMMdd}'), ]); $intl = new FormatPHP( config: new Config( locale: new Intl\Locale('es-ES'), defaultLocale: new Intl\Locale('en-US'), ), messages: $messagesInSpanish, );
  16. FORMAT PHP intl.php (part 2) echo $intl->formatMessage([ 'id' => 'myMessage',

    'defaultMessage' => 'Today is {ts, date, ::yyyyMMdd}', ], [ 'ts' => new DateTimeImmutable(), ]) . "\n"; echo $intl->formatNumber(19, new Intl\NumberFormatOptions([ 'style' => 'currency', 'currency' => 'EUR', ])) . "\n";
  17. FORMAT JS intl.mjs (part 1) import {createIntl} from '@formatjs/intl' const

    messagesInSpanish = { myMessage: 'Hoy es {ts, date, ::yyyyMMdd}', } const intl = createIntl({ locale: 'es-ES', defaultLocale: 'en-US', messages: messagesInSpanish, })
  18. FORMAT JS intl.mjs (part 2) console.log(intl.formatMessage({ id: 'myMessage', defaultMessage: 'Today

    is {ts, date, ::yyyyMMdd}', }, { ts: Date.now(), })) console.log(intl.formatNumber(19, { style: 'currency', currency: 'EUR', }))
  19. DATES & TIMES FormatPHP $date = new DateTimeImmutable('now'); echo $intl->formatDate($date);

    // e.g., "24/10/2024" echo $intl->formatTime($date); // e.g., "7:31"
  20. DATES & TIMES FormatPHP echo $intl->formatDate($date, new Intl\DateTimeFormatOptions([ 'day' =>

    'numeric', 'month' => 'short', 'weekday' => 'short', 'year' => 'numeric', ])); // e.g., "jue, 24 oct 2024" echo $intl->formatTime($date, new Intl\DateTimeFormatOptions([ 'timeStyle' => 'full', 'timeZone' => 'America/Los_Angeles', ])); // e.g., "22:02:20 hora de verano del Pacífico"
  21. DATES & TIMES FormatJS const date = Date.now() console.log(intl.formatDate(date)) //

    e.g., "23/10/2024" console.log(intl.formatTime(date)) // e.g., “7:31"
  22. DATES & TIMES FormatJS console.log(intl.formatDate(date, { day: 'numeric', month: 'short',

    weekday: 'short', year: 'numeric', })) // e.g., "jue, 24 oct 2024" console.log(intl.formatTime(date, { timeStyle: 'full', timeZone: 'America/Los_Angeles', })) // e.g., "22:07:00 (hora de verano del Pacífico)"
  23. NUMBERS FormatPHP $number = -12_345.678; echo $intl->formatNumber($number); // e.g., "-12.345,678"

    echo $intl->formatNumber(1562.25, new Intl\NumberFormatOptions([ 'style' => 'unit', 'unit' => 'kilometer', ])); // e.g., "1562,25 km"
  24. NUMBERS FormatJS const number = -12_345.678; console.log(intl.formatNumber(number)); // e.g., "-12.345,678"

    console.log(intl.formatNumber(1562.25, { style: 'unit', unit: 'kilometer', })) // e.g., "1562,25 km"
  25. CURRENCY FormatPHP echo $intl->formatCurrency(123.0, 'USD'); // e.g., "123,00 US$" echo

    $intl->formatCurrency( value: 123.0, currencyCode: 'USD', options: new Intl\NumberFormatOptions([ 'currencyDisplay' => 'narrowSymbol', 'trailingZeroDisplay' => 'stripIfInteger', ]), ); // e.g., "123 $"
  26. CURRENCY FormatJS console.log(intl.formatNumber(123.0, { style: 'currency', currency: 'USD', })); //

    e.g., "123,00 US$" console.log(intl.formatNumber(123.0, { style: 'currency', currency: 'USD', currencyDisplay: 'narrowSymbol', trailingZeroDisplay: 'stripIfInteger', })) // e.g., "123,00 $"
  27. MESSAGES Notes ▸ FormatPHP & FormatJS support ICU message syntax.

    ▸ Starts out simple and can support very complex statements. ▸ ICU is currently working to update and de fi ne MessageFormat 2. ▸ ECMA-402 is tracking the work of MessageFormat 2 closely. ▸ Unclear how it will a ff ect FormatJS and FormatPHP.
  28. MESSAGES FormatPHP $user = (object) ['name' => 'Bilbo']; echo $intl->formatMessage([

    'id' => 'greeting', 'description' => 'Greets a user after they log in.', 'defaultMessage' => 'Hello, {personName}!', ], [ 'personName' => $user->name, ]);
  29. echo $intl->formatMessage([ 'id' => 'sale', 'description' => 'Explains how far

    people walked for the sale prices.', 'defaultMessage' => <<<'EOD' On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture. EOD, ], [ 'actionDate' => new DateTimeImmutable('now'), 'distance' => 5.358, 'amount' => 150.00123, 'percentage' => 0.25, ]);
  30. echo $intl->formatMessage([ 'id' => 'sale', 'description' => 'Explains how far

    people walked for the sale prices.', 'defaultMessage' => <<<'EOD' On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture. EOD, ], [ 'actionDate' => new DateTimeImmutable('now'), 'distance' => 5.358, 'amount' => 150.00123, 'percentage' => 0.25, ]);
  31. echo $intl->formatMessage([ 'id' => 'sale', 'description' => 'Explains how far

    people walked for the sale prices.', 'defaultMessage' => <<<'EOD' On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture. EOD, ], [ 'actionDate' => new DateTimeImmutable('now'), 'distance' => 5.358, 'amount' => 150.00123, 'percentage' => 0.25, ]);
  32. echo $intl->formatMessage([ 'id' => 'sale', 'description' => 'Explains how far

    people walked for the sale prices.', 'defaultMessage' => <<<'EOD' On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture. EOD, ], [ 'actionDate' => new DateTimeImmutable('now'), 'distance' => 5.358, 'amount' => 150.00123, 'percentage' => 0.25, ]);
  33. echo $intl->formatMessage([ 'id' => 'sale', 'description' => 'Explains how far

    people walked for the sale prices.', 'defaultMessage' => <<<'EOD' On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture. EOD, ], [ 'actionDate' => new DateTimeImmutable('now'), 'distance' => 5.358, 'amount' => 150.00123, 'percentage' => 0.25, ]);
  34. On October 24 at 6:23   AM, they walked 5.4

    kilometers to pay only €150 in the 25% o ff sale on furniture.
  35. $host = (object) ['name' => 'Bilbo', 'gender' => 'male']; $party

    = (object) ['guests' => [(object) ['name' => 'Frodo']]]; echo $intl->formatMessage([ 'id' => 'party', 'description' => 'Tells who is inviting whom to their party.', 'defaultMessage' => <<<'EOD' {hostGender, select, female {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to her party.} =2 {{host} invites {guest} and one other person to her party.} other {{host} invites {guest} and # other people to her party.} }} male {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to his party.} =2 {{host} invites {guest} and one other person to his party.} other {{host} invites {guest} and # other people to his party.} }} other {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to their party.} =2 {{host} invites {guest} and one other person to their party.} other {{host} invites {guest} and # other people to their party.} }} } EOD, ], [ 'hostGender' => $host->gender, 'host' => $host->name, 'numGuests' => count($party->guests), 'guest' => $party->guests[0]->name, ]);
  36. 'defaultMessage' => <<<'EOD' {hostGender, select, female {{numGuests, plural, offset:1 =0

    {{host} does not give a party.} =1 {{host} invites {guest} to her party.} =2 {{host} invites {guest} and one other person to her party.} other {{host} invites {guest} and # other people to her party.} }} male {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to his party.} =2 {{host} invites {guest} and one other person to his party.} other {{host} invites {guest} and # other people to his party.} }} other {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to their party.} =2 {{host} invites {guest} and one other person to their party.} other {{host} invites {guest} and # other people to their party.} }} } EOD,
  37. 'defaultMessage' => <<<'EOD' {hostGender, select, female {{numGuests, plural, offset:1 =0

    {{host} does not give a party.} =1 {{host} invites {guest} to her party.} =2 {{host} invites {guest} and one other person to her party.} other {{host} invites {guest} and # other people to her party.} }} male {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to his party.} =2 {{host} invites {guest} and one other person to his party.} other {{host} invites {guest} and # other people to his party.} }} other {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to their party.} =2 {{host} invites {guest} and one other person to their party.} other {{host} invites {guest} and # other people to their party.} }} } EOD,
  38. 'defaultMessage' => <<<'EOD' {hostGender, select, female {{numGuests, plural, offset:1 =0

    {{host} does not give a party.} =1 {{host} invites {guest} to her party.} =2 {{host} invites {guest} and one other person to her party.} other {{host} invites {guest} and # other people to her party.} }} male {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to his party.} =2 {{host} invites {guest} and one other person to his party.} other {{host} invites {guest} and # other people to his party.} }} other {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to their party.} =2 {{host} invites {guest} and one other person to their party.} other {{host} invites {guest} and # other people to their party.} }} } EOD,
  39. MESSAGES FormatJS const user = {name: 'Bilbo'} console.log(intl.formatMessage({ id: 'greeting',

    description: 'Greets a user after they log in.', defaultMessage: 'Hello, {personName}!', }, { personName: user.name, }))
  40. console.log(intl.formatMessage({ id: 'sale', description: 'Explains how far people walked for

    the sale prices.', defaultMessage: ` On {actionDate, date, ::dMMMM} at {actionDate, time, ::jmm}, they walked {distance, number, ::unit/kilometer unit-width-full-name .#} to pay only {amount, number, ::currency/EUR unit-width-short precision-currency-standard/w} in the {percentage, number, ::percent precision-integer} off sale on furniture.`, }, { actionDate: Date.now(), distance: 5.358, amount: 150.00123, percentage: 0.25, }))
  41. const host = {name: 'Bilbo', gender: 'male'} const party =

    {guests: [{name: 'Frodo'}]} console.log(intl.formatMessage({ id: 'party', description: 'Tells who is inviting whom to their party.', defaultMessage: ` {hostGender, select, female {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to her party.} =2 {{host} invites {guest} and one other person to her party.} other {{host} invites {guest} and # other people to her party.} }} male {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to his party.} =2 {{host} invites {guest} and one other person to his party.} other {{host} invites {guest} and # other people to his party.} }} other {{numGuests, plural, offset:1 =0 {{host} does not give a party.} =1 {{host} invites {guest} to their party.} =2 {{host} invites {guest} and one other person to their party.} other {{host} invites {guest} and # other people to their party.} }} }`, }, { hostGender: host.gender, host: host.name, numGuests: party.guests.length, guest: party.guests[0].name, }))
  42. EXTRACTING STRINGS FormatPHP ▸ Extract all the message strings from

    PHP source fi les: ❯ ./vendor/bin/formatphp extract \ --out-file=locales/en.json \ '**/*.php' \ '**/*.phtml' [notice] Message descriptors extracted and written to locales/en.json
  43. ▸ Extract all the message strings from JS source fi

    les: EXTRACTING STRINGS FormatJS ❯ npx formatjs extract '**/*.mjs' --out-file locales/en2.json
  44. { "greeting": { "defaultMessage": "Hello, {personName}!", "description": "Greets a user

    after they log in." }, "myMessage": { "defaultMessage": "Today is {ts, date, ::yyyyMMdd}" }, "party": { "defaultMessage": "{hostGender, select, female {{numGuests, plural, of "description": "Tells who is inviting whom to their party." }, "sale": { "defaultMessage": "On {actionDate, date, ::dMMMM} at {actionDate, time "description": "Explains how far people walked for the sale prices." } }
  45. TRANSLATED STRINGS es.json { "greeting": { "defaultMessage": "¡Hola, {personName}!" },

    "myMessage": { "defaultMessage": “Hoy es {ts, date, ::yyyyMMdd}" }, "party": { "defaultMessage": "{hostGender, select, female {{numGuests, plural, offset:1 =0 { }, "sale": { "defaultMessage": "El {actionDate, date, ::dMMMM} a las {actionDate, time, ::jmm} } }
  46. LOADING STRINGS FormatPHP use FormatPHP\{Config, FormatPHP, Intl, Message, MessageLoader}; $config

    = new Config(new Intl\Locale('es-419')); $messageLoader = new MessageLoader( // The path to your locale JSON files (i.e., en.json, es.json, etc.). messagesDirectory: '/path/to/locales', config: $config, ); $intl = new FormatPHP( config: $config, messages: $messageLoader, );
  47. El 24 de octubre a las 6:23, caminaron 5,4 kilómetros

    para pagar solo 150 € en la venta del 25 % de descuento en muebles.
  48. EXTRACTING STRINGS Notes ▸ Extract from PHP and JS source

    to two di ff erent locales fi les. ▸ These are your “default” locale strings. ▸ Consider merging these fi les, but be careful when IDs & messages overlap. ▸ Merging isn’t necessary, though. ▸ Send these fi les to your translators.
  49. TMS Translation Management Systems ▸ TMSs are what translators use

    to translate your messages. ▸ FormatPHP and FormatJS support extracting messages into JSON format supported by a wide-range of TMSs. ▸ You can automate the process of sending receiving locale translations. ▸ e.g., CrowdIn supports automatic work fl ows that open GitHub PRs on your feature branches when your default locale fi les have changes.
  50. TMS Translation Management Systems ❯ ./vendor/bin/formatphp extract \ --format=crowdin \

    --out-file=locales/en.json \ '**/*.php' \ '**/*.phtml' ❯ npx formatjs extract '**/*.mjs' \ --format crowdin \ --out-file locales/en2.json
  51. TMS Translation Management Systems TMS --format Smartling smartling Lingohub simple

    Phrase simple Crowdin crowdin SimpleLocalize simple POEditor simple Localize simple locize simple
  52. TESTING With pseudo-locales Locale Message en-XA ṁẏ ńâṁè íś {name}

    en-XB [!! ṁẏ ńâṁṁ ṁè íííś !!]{name} xx-AC MY NAME IS {name} xx-HA [javascript ]my name is {name} xx-LS my name is {name}SSS SSSSSSSSSSSSSSSSSSSSSS
  53. LOOKING AHEAD ▸ ICU MessageFormat 2 ▸ ECMA-402 - Internationalization

    API Speci fi cation ▸ PHP-FIG: PSR-21 - Common Interfaces and Functionality for Interoperability of Message Translation and Formatting ▸ PECL ecma_intl extension - Ports ECMA-402 to PHP
  54. THANK YOU! Keep in touch     

     ben.ramsey.dev phpc.social/@ramsey github.com/ramsey speakerdeck.com/ramsey www.linkedin.com/in/benramsey [email protected] bram.se/cascadia-i18n     
  55. ATTRIBUTION ▸ Fonts ▸ Archivo Black by Omnibus-Type, SIL Open

    Font License, Version 1.1 ▸ DM Mono by Colophon Foundry, SIL Open Font License, Version 1.1 ▸ Playfair Display by Claus Eggers S ø rensen, SIL Open Font License, Version 1.1 ▸ Saira by Omnibus-Type, SIL Open Font License, Version 1.1 ▸ OpenMoji ▸ “winking face” by Emily Jäger, CC BY-SA 4.0 ▸ “weary cat” by Emily Jäger, CC BY-SA 4.0