search
HomeWeb Front-endJS TutorialWhat are the methods for implementing front-end internationalization with jQuery.i18n?

This time I will bring you jQuery.i18n what are the methods to achieve front-end internationalization, what are the precautions for jQuery.i18n to implement front-end internationalization, the following are practical cases, Let’s take a look.

Before introducing jQuery.i18n.properties, let’s first take a look at what internationalization is. The English word for internationalization is: Internationalization, also known as i18n, "i" is the first letter of the word, "18" is the number of words between "i" and "n", and "n" represents the last letter of the word one letter. In computing, internationalization refers to the process of designing software that can adapt to various regional and linguistic environments.

jQuery.i18n.properties is a lightweight jQuery internationalization plug-in. Similar to resource files in Java, jQuery.i18n.properties uses .properties files to internationalize JavaScript. The jQuery.i18n.properties plug-in parses the corresponding resource files with the suffix ".properties" according to the language and country code specified by the user (or provided by the browser) (in compliance with ISO-639 and ISO-3166 standards).

Using resource files to achieve internationalization is a popular way. For example, Android applications can use resource files named after language and country encoding to achieve internationalization. The resource files in the jQuery.i18n.properties plug-in are suffixed with ".properties" and contain region-related key-value pairs. We know that Java programs can also use resource files with the .properties suffix to achieve internationalization, so this method is particularly useful when we want to share resource files between Java programs and front-end JavaScript programs. The jQuery.i18n.properties plug-in first loads the default resource file (for example: strings.properties), and then loads the resource file for a specific locale (for example: strings_zh.properties), which ensures that when a translation for a certain language is not provided , the default value is always valid. Developers can use keys in resource files as JavaScript variables (or functions) or Maps.

The following is an introduction to how to use i18n in the project. To explain, my here is different from the official website. I have not used some methods of i18n, but only used a small part, and found out the comparison. Suitable for our project.

1. First, create the resource file:

##locales/en-us/ns.jsp.json:

{ 
 "reSendMail": { 
  "emailSendFail": "Failed to send the email", 
  "emailHasSendToYourEmail": "The email has be sent to your email address. " 
 }, 
 "login": { 
  "pleaseWriteUserName": "Please input your username", 
  "pleaseWritePassword": "Please input your password " 
 }, 
 "activeRegist": { 
  "thisUserEmailHasUsed":"Email has already been used", 
  "thisUserNameHasUsed":"User Name has already been used", 
  "4to30Char":"Please enter 4-30 characters", 
  "1to50Char":"Please enter 1-50 characters", 
  "1to16Linkman":"Please enter 1-16 characters", 
  "loginPage":"Login Page", 
  "EmailMustNotEmpty": "Email can't be blank", 
  "PWDNotEmpty": "Password can't be blank", 
  "nameNotEmpty":"Name can't be blank", 
  "conpanyNotEmpty":"Company can't be blank", 
  "qqNotEmpty":"QQ can not be blank", 
  "phoneNotEmpty":"Mobile can not be blank", 
  "least50charEmailAddress":"No more than 50 characters for email address", 
  "enterEmailAddressLikeThis":"Email address format 'abc@abc.com'", 
  "enter6To32Character":"Please enter 6-32 characters", 
  "NameMost30Character":"No more than 30 characters for name", 
  "QQTypeIsWrong":"Incorrent QQ format", 
  "phoneTypeNotCorrect":"Incorrent mobile format", 
  "thisEmailHasRegistered":"Email address has already been registered", 
  "registerFail":"Registration failed!", 
   "TwoTimesPWDIsDifferent":"The passwords you entered do not match. Please try again." 
 } 
}
Chinese

Configuration file I won’t write it down, the format is the same, it is written in different modules in the form of map.

2. Introduce i18n.js on the jsp page and initialize i18n

<script></script> 
<script></script> 
<script> 
i18n.init({ 
 lng:&#39;${sessionScope.language }&#39;, 
 ns: { namespaces: [&#39;ns.jsp&#39;], defaultNs: &#39;ns.jsp&#39;}, 
 useLocalStorage: false 
}); 
</script>

3.js reference

var emailflag = false; 
function checkemail() { 
 check('email', 'emailmessage'); 
 var email = $("#email").attr("value"); 
 if(email != null && email != "") { 
  if(email.length > 50) { 
   setpInfo("emailp", i18n.t('activeRegist.least50charEmailAddress'), 1);//请输入50字符内的邮箱地址 
  } else { 
   if(isEmail(email, $("#email"))) { 
    checkemailForServer(email); 
   } else { 
    setpInfo("emailp", i18n.t('activeRegist.enterEmailAddressLikeThis'), 1);//请输入邮箱地址,格式为abc@abc.com 
   } 
  } 
 } 
}

4. Test

I believe you have mastered the method after reading the case in this article. For more exciting content, please pay attention to php Chinese Other related articles online!

Recommended reading:

How to operate node to achieve crawler effect

How to use jQuery.i18n.properties to make JS code international change

The above is the detailed content of What are the methods for implementing front-end internationalization with jQuery.i18n?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
使用Gin框架实现国际化和多语言支持功能使用Gin框架实现国际化和多语言支持功能Jun 23, 2023 am 11:07 AM

随着全球化的发展以及互联网的普及,越来越多的网站和应用开始致力于实现国际化和多语言支持功能,以满足不同人群的需求。为了实现这些功能,开发者需要使用一些先进的技术及框架。在本文中,我们将介绍如何使用Gin框架来实现国际化和多语言支持功能。Gin框架是一个轻量级的Web框架,由Go语言编写。它具有高效、易用和灵活等特点,已经成为了许多开发者的首选框架。除此之外,

使用FastAPI框架构建国际化的Web应用使用FastAPI框架构建国际化的Web应用Sep 29, 2023 pm 03:53 PM

使用FastAPI框架构建国际化的Web应用FastAPI是一个高性能的PythonWeb框架,它结合了Python类型注解和性能较好的异步支持,使得开发Web应用变得更加简单、快速和可靠。在构建一个国际化的Web应用时,FastAPI提供了方便的工具和理念,可以使得应用能够轻松支持多种语言。下面我将给出一个具体的代码示例,介绍如何使用FastAPI框架构

PHP8.0中的国际化库PHP8.0中的国际化库May 14, 2023 pm 05:51 PM

PHP8.0中的国际化库:UnicodeCLDR和Intl扩展随着全球化的进程,开发跨语言、跨地域的应用程序变得越来越普遍。国际化是实现这一目标的重要组成部分。在PHP8.0中,引入了UnicodeCLDR和Intl扩展,这两个组件都为开发者提供了更好的国际化支持。UnicodeCLDRUnicodeCLDR(CommonLocaleDat

如何使用Webman框架实现国际化和多语言支持?如何使用Webman框架实现国际化和多语言支持?Jul 09, 2023 pm 03:51 PM

如今,随着互联网技术的不断发展,越来越多的网站和应用程序需要支持多语言和国际化。在Web开发中,使用框架可以极大地简化开发过程。本文将介绍如何使用Webman框架实现国际化和多语言支持,同时提供了一些代码示例。一、什么是Webman框架?Webman是一个基于PHP的轻量级框架,提供了丰富的功能和易于使用的工具,用于开发Web应用程序。其中之一就是国际化和多

如何使用Hyperf框架进行国际化支持如何使用Hyperf框架进行国际化支持Oct 22, 2023 am 08:14 AM

如何使用Hyperf框架进行国际化支持随着全球化的快速发展,很多应用都需要具备多语言支持的功能,以满足不同国家和地区用户的需求。Hyperf框架作为一款轻量级的高性能框架,提供了国际化支持的功能,能够帮助开发者快速实现多语言应用的开发。本文将介绍如何在Hyperf框架中使用国际化功能,并提供相应的代码示例。一、配置多语言支持首先,需要在Hyperf的配置文件

PHP开发中如何处理多语言和国际化问题PHP开发中如何处理多语言和国际化问题Oct 09, 2023 pm 04:24 PM

PHP开发中如何处理多语言和国际化问题,需要具体代码示例随着互联网的发展,人们对于多语言和国际化的需求越来越高。在PHP开发中,如何有效地处理多语言和国际化问题成为了开发者们需要解决的重要任务。字符编码的处理在PHP开发中,我们首先要确保正确处理字符编码。在多语言环境中,使用UTF-8编码是最常见的选择。可以在PHP文件的头部添加如下代码:header('C

Vue中如何使用路由实现国际化的多语言切换?Vue中如何使用路由实现国际化的多语言切换?Jul 22, 2023 pm 12:17 PM

Vue中如何使用路由实现国际化的多语言切换?在开发多语言网站时,我们的一个重要需求是能够根据用户选择的语言,实现网站内容的切换。Vue.js是一款流行的JavaScript框架,通过使用VueRouter插件,我们可以很方便地实现路由功能。在本文中,我将介绍如何使用路由实现Vue中的国际化多语言切换。首先,我们需要安装VueRouter插件。可以通过np

Vue开发中如何解决国际化语言切换问题Vue开发中如何解决国际化语言切换问题Jul 01, 2023 pm 01:33 PM

Vue开发中如何解决国际化语言切换问题引言:在如今的全球化时代,应用程序的国际化变得越来越重要。为了让不同地区的用户能够更好地使用应用程序,我们需要对内容进行本地化,以适应不同语言和文化环境。对于使用Vue进行开发的应用程序来说,国际化是一个重要的考虑因素。本文将介绍如何在Vue开发中解决国际化语言切换问题,以实现应用程序的多语言支持。一、国际化与本地化在开

See all articles

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

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function