


Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial
There are many ways to achieve internationalization. Many PHP frameworks have built-in i18n support, but most of them are based on PHP arrays. This method is not recommended. Currently the most popular and versatile method is gettext.
Gettext is used for system internationalization (I18N) and localization (L10N). You can use Native Language Support (NLS) when compiling the program, which can make the output of the program use the language set by the user. Instead of English. For more information about gettext, please see: Let's talk about how to use gettext to achieve internationalization in your PHP program.
1. Check environmental requirements First check phpinfo() to make sure your PHP has the gettext extension enabled. If gettext is enabled, you should see the following information in the phpinfo page:
If not found, please modify php.ini to enable the extension
2. Create a new locale folder for your project gettext involves two files, *.po is the translation The source file stores all the strings to be translated and the translated results in the project; the *.mo file is the binary file compiled from the po file. When the translation information is actually read, it is read from the mo file, so this Documentation is also essential. Gettext has strict directory requirements. You must put the internationalized files in the specified directory. Most of the failures in using gettext are due to the po file and mo file not being placed in the right location. Here is an example of a typical project directory tree:
3. Initialize the i18n environment This is mainly a simple setting on the program side. Here is a simple example:
< ?php
//Define the target language and po file to be translated Encoding
$locale = "zh_CN.utf8";
setlocale(LC_ALL, $locale);
//Set the translation text domain. The following code will let the program go to locale/zh_CN/LC_MESSAGES/default.mo to find the translation file
bindtextdomain("default", dirname(__FILE__)."/locale") ;
textdomain("default");
?>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
< ; ?php echo _("Hellon");; ?>
4. Create po file
There are many ways to get to this step. Of course, you can create it manually. However, the biggest disadvantage of this is that you don’t know which strings in the project need to be translated. Here is the next software recommended - PoEdit, both for Windows platform and Linux. is applicable.
Select File->Create a new message catalog document and fill in some necessary information. Note that if the target language is Chinese, since Chinese is a double-byte character, it is best to fill in "nplurals=2; plural=(n!=1);” (without quotation marks), as shown below
Then add the folder where the project is located to the "path", set the keywords used for translation, and PoEdit will automatically search for all strings to be translated in the project and generate the po file . After the translation is completed, select "Save" and PoEdit will automatically generate the mo file. In the future, every time the string to be translated in the project is updated, just open PoEdit and select the category -> Update from source. This idea is not only applicable to PHP, but is similar to other languages. I did the translation of a Django project some time ago. It's just that it's more convenient to create the po file, and the other steps are very similar. Just draw inferences from one example, and pay special attention to the directory structure, which is where problems are most likely to occur.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
