×
Community Blog How to Localize Website for Multilingual Content

How to Localize Website for Multilingual Content

Localization is not only about translating your website or application to local languages. This article discusses several other factors that enterprises should consider when localizing a product.

By Alex Mungai Muchiri, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud community.

By definition, localization is the spread of a product across multiple markets. When localization is at play, market share is always a major consideration factor. Doing it right sends a signal to your target clients that your product offering was designed with their needs and lifestyle in mind. Many surveys have continuously proved that local languages are the first choice for consumers in markets where English is not spoken. It is especially important if it is a software product in question. A recent survey by MediaPost.com yielded the following results:

  1. European customers value websites that are in their native language. Specifically, 82% of them will not buy if a site is in a foreign language.
  2. Global consumers prefer buying products that are in their local language. 72.4% of them feel inclined towards buying from such websites.
  3. 69% of all online searches are in languages other than English, which means that English only accounts for 31% of searches.
  4. About 25% of internet users are from Europe, 42% from the Asian region and about 10% from Latin America.
  5. Statistics indicate that Arabic use over the internet has risen by 2500%, English by only 204% and Chinese has grown to be the second most used.

The same research shows that most buyers, accessing web content in their own language far outweighs the cost of goods. Personally, I have found that most people I know who are living in non-English speaking countries find it hard to cope with the content on local websites. Therefore, most will tell you that they are constantly on the lookout for localized sites. Accordingly, those websites that are better localized. A properly localized website even scores better on search engines.

If you are a website or business owner, you have probably thought about creating a multilingual website for your company or business. For instance, you may be setting up a travel website about museums in Europe that targets Spanish, German, and English speakers. Building such a website requires consideration of the structure, geographic and content of the website.

1

Website Structure

It is important to consider getting domains that are specific to your target country, which are called top-level domains (TLDs). You can have a domain such as ilovebackpacking.co.uk, ichlieberucksackreisen.de, and irdemochilero.es. The method of using country-specific is also known as geo-targeting and is very useful for targeting those markets.

However, geo-targeting is slightly different from language targeting, a subject that is covered later in this article. For instance, you may have content targeted for German-speaking people in Germany, Switzerland, or even Austria. The TLD method requires that you have a .de TLD for those users. When users are targeted in their own language, they are more likely to trust your website. However, buying domains for all countries may become very expensive especially for a small business. Furthermore, updating and maintaining all those domains is a very tedious process.

If you are looking to localize web content minus all the costs for maintaining multiple domains, consider buying a single domain to host all versions of your website. There are two available options for you in this case:

  1. Create subdomains on your main domain for the different language content. For instance, you could have en.domain.com, de.domain.com, and es.domain.com.
  2. Create subdirectories to host content in the various languages on your site. This second option makes it easier for website maintenance and updates. For instance, you could have domain.com/es, domain.com/de, and domain.com/en.

If you still need for information on subdirectories and subdomains, this article will help you understand the topic better. So, which option should you follow? Geographic targeting or language targeting?

Geographic Targeting vs. Language Targeting

The Set Geographic Target tool in Webmaster Tools is an amazing tool for use in a geographically targeted website. It can help you reach a certain region in the world easily by setting the geographic targets for subdirectories and subdomains. It allows you to make settings such as /es/ for Spain etc. However, geographic targeting is only limited to certain geographic regions of the world. In such a case, language targeting is the better alternative. So, how to go about it?

Content Organization

From a search engine perspective, presenting similar content in multiple languages is not similar to duplicating content. However, an organisation of content is much important in such a case. Following one of the recommended organization methods above would save much of the problems associated with multilingual websites. It is important that languages are not mixed up on the same page since search engines may find it difficult to discern between the content. Importantly also, content and navigation in the same language should be on the same page. Perform a language-specific site search to determine the number of pages on your website that are in a certain language. Google includes such a feature, but you shall have to use the TLD for the specific language. For example, if we wanted the results of our Spanish site, use google.es and choose below the search box for Google to only display Spanish results.

Maintaining a Database for Multiple Languages

Localizing Data for Your Multi-lingual Website

This article has explored the design of a data model to achieve the objective of localization. It will also give you a better way to manage content that is offered in a variety of languages.

The Method of Content Translation for Localization

The first thing to consider is content translation when undertaking a content localization project. Also, you will need a very robust database that is well designed to efficiently store content that has been translated into various languages.

Designing an Effective Data Model

Let us say that you are working on a travel portal that supports several languages. The first consideration is creating fields to store text, PackageTitle, and PackageDescription, that are in various languages. You will also need a CustomerMaster table to store text fields to serve other categories required in the various languages. The examples below are some of the ways to design websites that are capable of content translation as well as the merits and the demerits with the chosen method.

The approaches that have been selected for this article could be expanded to other tables in the models. Your needs should inform the approach you choose for your multilingual portal.

Approach 1

This first approach is one of the simplest challenges from a development perspective. It is as simple as adding a column for the respective language in the column field.

2

Pros:

  1. This method is very easy to implement by the developer
  2. There is no complexity involved in SQL querying for any language in the data stored in the database

The sample SQL method below demonstrates this method:

3

Cons:

  1. Scaling the model database is a complex procedure when adding many languages. It requires the addition of multiple columns in all the tables with specific languages.
  2. The process is very long when handling multiple languages in the database fields.
  3. If your developers are to add a new language, there is a need to change the SQL method used. That is a major drawback since it involves writing new queries every time when adding a new language. In the example below, @sLanguage is the current language in the app. We have used the front-end representation while data retrieved is from the backend.

4

Approach 2

The second approach involves creating translated and non-translated fields in entity layers. Specifically, we use entity tables that contain any number of translated fields. Such fields are split into either translated and non-translated in separate layers. The method is uniquely positioned to separate all individual layers of data.

5

Pros:

  1. The method works well for non-translated fields. In such a view, we only consider the non-translated fields, in which case, they do not require translation tables.
  2. You will need very little join operations to retrieve the translated texts from the respective fields.
  3. It is very simple to write OEM in the method.
  4. You only need simple SQL queries to retrieve the translated items.
  5. The method has been used severally in multilingual portals with remarkable success.
  6. The example below highlights a sample application of the method used to retrieve

6

Conclusion

Localization is very important for multinational brands that seek to enter new markets. However, it is important to look at future prospects before settling on a particular localization solution. You should keep in mind that localization is not only about presenting your website in local languages. It is about capturing the culture, lifestyle, and behaviors of local people.

Alibaba Cloud ApsaraDB for RDS can host your database solution securely on the cloud. Whether it is MySQL, PostgreSQL, or any other database system, you can host your multi-lingual website on Alibaba Cloud. Don't have an Alibaba Cloud account yet? Sign up for an account and try over 40 products for free worth up to $1200.

0 0 0
Share on

Alex

53 posts | 8 followers

You may also like

Comments

Alex

53 posts | 8 followers

Related Products