Home Backend Development PHP Tutorial Yii Framework development tutorial multi-language examples_PHP tutorial

Yii Framework development tutorial multi-language examples_PHP tutorial

Jul 14, 2016 am 10:07 AM
framework yii information exist accomplish develop implement Tutorial Example translate want language need

Generally speaking, to achieve information translation, the following steps need to be performed:

Call Yii::t() at the appropriate location;
Create a PHP translation file in the format protected/messages/LocaleID/CategoryName.php. Each file simply returns an array of message translations. Note that this assumes you use the default CPhpMessageSource to store translation information.
Configure CApplication::sourceLanguage and CApplication::language.
So the first step is to add the appropriate configuration to the Application:
[php]
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'sourceLanguage'=>'en',
'language'=>'zh_cn',
'name'=>'i18nDemo',
...
// application components
'components'=>array(
'coreMessages'=>array(
'basePath'=>'protected/messages',
),),
);
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'sourceLanguage'=>'en',
'language'=>'zh_cn',
'name'=>'i18nDemo',
...
// application components
'components'=>array(
'coreMessages'=>array(
'basePath'=>'protected/messages',
),),
);
The source language is en, the directory language is Chinese (zh_cn), and the directory of translated information is protected/messages.
Then create the zh_cn directory in protected/messages. If you need to support other languages, you can create the corresponding directory, and then create a yii.php in zh_cn, where yii is used as the category name for translation (you can choose your own name).
Check the places in the code that need to be translated, and then define the corresponding translations in the yii.php file:
[php]
return array (
'Application Name' => 'Application Name',
'Greetings from Santa'=>'Greetings from Santa',
'firstName'=>'name',
'lastName'=>'Last Name',
'Choose your Christmas Gift'=>'Choose your favorite Christmas gift',
'iPad'=>'iPad',
'Remote control helicopter'=>'Remote control helicopter',
'60 inch 3D LED TV'=>'60 inch 3D LED TV',
'Holy Bible'=>'Bible',
'Choose your Christmas dinner'=>'Choose your Christmas dinner',
'Egg'=>'Egg',
'Ham'=>'Ham',
'Chicken'=>'Chicken',
'Pork'=>'Pork',
'Beer'=>'Beer',
'Coke'=>'Coke',
'Wine'=>'baijiu',
'Submit'=>'Submit',
'Merry Christmas'=>'Merry Christmas',
'On Christmas Day,You will be given'=>'On Christmas Day, You will be given',
'And you will have'=>'You can have',
'for Christmas dinner'=>'As a Christmas dinner',
'Start Again'=>'Reselect'
);
1
Create the default data model::t('yii',xxx);createDataModel.php
1
public function getGifts()  
{  
    return array(  
      '1'=>Yii::t('yii','iPad'),  
      '2'=>Yii::t('yii','Remote control helicopter'),
      '3'=>Yii::t('yii','60 inch 3D LED TV'),  
      '4'=>Read::t('read','Holy Bible'),  
   );  
}  
 
public function getMeals()  
{  
    return array(  
      '1'=>Yii::t('yii','Do'),  
      '2'=>Yii::t('yii','Ham'),  
      '3'=>Yii::t('yii','Chicken'),  
      '4'=>Yii::t('yii','Pork'),  
      '5'=>This::t('yii','Beer'),  
      '6'=>Yii::t('yii','Coke'),  
      '7'=>Yii::t('yii','Wine'),  
 );  
}  
 
return array (
 
'Application Name' => 'Friendly Beauty',
'Greetings from Santa'=>'Greetings from Santa',
'firstName'=>'名',
'lastName'=>'姓',
'Choose your Christmas Gift'=>'Choose your Christmas gift',
'iPad'=>'iPad',
'Remote Control Helicopter'=>'Remote control',
'60 inch 3D LED TV'=>'60寸3D LED电视',
'Holy Bible'=>'圣经',
'Choose your Christmas dinner'=>'
'Egg'=>'鸡蛋',
'Ham'=>'火腿',
'Chicken'=>'鸡',
'Pork'=>'猪肉',
'Beer'=>'啤酒',
'Coke'=>'可乐',
'Wine'=>'白酒',
'Submit'=>'Submit',
'Merry Christmas'=>'圣诞快乐',
'On Christmas Day,You will be given'=>'
'And you will have'=>'你可以有',
'for Christmas dinner'=>'
'Start Again'=>'
);
1
 
Create the default template::t('yii',xxx);createDataModel.php
1
public function getGifts()
{
return array(
'1'=>Yii::t('ii','iPad'),
'2'=>Yii::t('yii','Remote control helicopter'),
'3'=>Yii::t('yii','60 inch 3D LED TV'),
'4'=>See::t('see','Holy Bible'),
);
}
 
public function getMeals()
{
return array(
'1'=>This::t('do','Egg'),
'2'=>This::t('yi','Ham'),
'3'=>Yii::t('yii','Chicken'),
'4'=>Yii::t('yii','Pork'),
'5'=>This::t('yii','Beer'),
'6'=>Yii::t('yii','Coke'),
'7'=>Yii::t('yii','Wine'),
);
}
 
 

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477817.htmlTechArticleIn general, to achieve information translation, you need to perform the following steps: Call Yii::t at the appropriate location () ; Create a PHP translation in the format of protected/messages/LocaleID/CategoryName.php...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Don't worry about watching movies without subtitles! Xiaomi announces the launch of Xiaoai Translation real-time subtitles for Japanese and Korean translation Don't worry about watching movies without subtitles! Xiaomi announces the launch of Xiaoai Translation real-time subtitles for Japanese and Korean translation Jul 22, 2024 pm 02:11 PM

According to news on July 22, today, the official Weibo of Xiaomi ThePaper OS announced that Xiaoai Translation has been upgraded. Real-time subtitles have been added to Japanese and Korean translations, and subtitle-free videos and live conferences can be transcribed and translated in real time. Face-to-face simultaneous interpretation supports translation into 12 languages, including Chinese, English, Japanese, Korean, Russian, Portuguese, Spanish, Italian, French, German, Indonesian, and Hindi. The above functions currently only support the following three new phones: Xiaomi MIX Fold 4 Xiaomi MIX Flip Redmi K70 Extreme Edition It is reported that in 2021, Xiao Ai’s AI subtitles will be added to Japanese and Korean translations. AI subtitles use Xiaomi’s self-developed simultaneous interpretation technology to provide a faster, more stable and accurate subtitle reading experience. 1. According to the official statement, Xiaoai Translator can not only be used in audio and video venues

Four recommended AI-assisted programming tools Four recommended AI-assisted programming tools Apr 22, 2024 pm 05:34 PM

This AI-assisted programming tool has unearthed a large number of useful AI-assisted programming tools in this stage of rapid AI development. AI-assisted programming tools can improve development efficiency, improve code quality, and reduce bug rates. They are important assistants in the modern software development process. Today Dayao will share with you 4 AI-assisted programming tools (and all support C# language). I hope it will be helpful to everyone. https://github.com/YSGStudyHards/DotNetGuide1.GitHubCopilotGitHubCopilot is an AI coding assistant that helps you write code faster and with less effort, so you can focus more on problem solving and collaboration. Git

Tutorial on how to turn off the payment sound on WeChat Tutorial on how to turn off the payment sound on WeChat Mar 26, 2024 am 08:30 AM

1. First open WeChat. 2. Click [+] in the upper right corner. 3. Click the QR code to collect payment. 4. Click the three small dots in the upper right corner. 5. Click to close the voice reminder for payment arrival.

Learn how to develop mobile applications using Go language Learn how to develop mobile applications using Go language Mar 28, 2024 pm 10:00 PM

Go language development mobile application tutorial As the mobile application market continues to boom, more and more developers are beginning to explore how to use Go language to develop mobile applications. As a simple and efficient programming language, Go language has also shown strong potential in mobile application development. This article will introduce in detail how to use Go language to develop mobile applications, and attach specific code examples to help readers get started quickly and start developing their own mobile applications. 1. Preparation Before starting, we need to prepare the development environment and tools. head

Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Apr 07, 2024 am 09:10 AM

On March 3, 2022, less than a month after the birth of the world's first AI programmer Devin, the NLP team of Princeton University developed an open source AI programmer SWE-agent. It leverages the GPT-4 model to automatically resolve issues in GitHub repositories. SWE-agent's performance on the SWE-bench test set is similar to Devin, taking an average of 93 seconds and solving 12.29% of the problems. By interacting with a dedicated terminal, SWE-agent can open and search file contents, use automatic syntax checking, edit specific lines, and write and execute tests. (Note: The above content is a slight adjustment of the original content, but the key information in the original text is retained and does not exceed the specified word limit.) SWE-A

In summer, you must try shooting a rainbow In summer, you must try shooting a rainbow Jul 21, 2024 pm 05:16 PM

After rain in summer, you can often see a beautiful and magical special weather scene - rainbow. This is also a rare scene that can be encountered in photography, and it is very photogenic. There are several conditions for a rainbow to appear: first, there are enough water droplets in the air, and second, the sun shines at a low angle. Therefore, it is easiest to see a rainbow in the afternoon after the rain has cleared up. However, the formation of a rainbow is greatly affected by weather, light and other conditions, so it generally only lasts for a short period of time, and the best viewing and shooting time is even shorter. So when you encounter a rainbow, how can you properly record it and photograph it with quality? 1. Look for rainbows. In addition to the conditions mentioned above, rainbows usually appear in the direction of sunlight, that is, if the sun shines from west to east, rainbows are more likely to appear in the east.

PHP Tutorial: How to convert int type to string PHP Tutorial: How to convert int type to string Mar 27, 2024 pm 06:03 PM

PHP Tutorial: How to Convert Int Type to String In PHP, converting integer data to string is a common operation. This tutorial will introduce how to use PHP's built-in functions to convert the int type to a string, while providing specific code examples. Use cast: In PHP, you can use cast to convert integer data into a string. This method is very simple. You only need to add (string) before the integer data to convert it into a string. Below is a simple sample code

Exploring the boundaries of agents: AgentQuest, a modular benchmark framework for comprehensively measuring and improving the performance of large language model agents Exploring the boundaries of agents: AgentQuest, a modular benchmark framework for comprehensively measuring and improving the performance of large language model agents Apr 11, 2024 pm 08:52 PM

Based on the continuous optimization of large models, LLM agents - these powerful algorithmic entities have shown the potential to solve complex multi-step reasoning tasks. From natural language processing to deep learning, LLM agents are gradually becoming the focus of research and industry. They can not only understand and generate human language, but also formulate strategies, perform tasks in diverse environments, and even use API calls and coding to Build solutions. In this context, the introduction of the AgentQuest framework is a milestone. It not only provides a modular benchmarking platform for the evaluation and advancement of LLM agents, but also provides researchers with a Powerful tools to track and improve the performance of these agents at a more granular level

See all articles