1. i18n 의미
국제화라는 단어인 Internationalization의 첫글자와 마지막 글자인 I와 N 사이에 18글자가 들어간다는 의미로 I18N이라고 표기한다고 한다.
2. i18next
i18next는 i18n을 자바스크립트 상에서 사용할 수 있도록 제작된 라이브러리이다.
3. 공식사이트
Introduction - i18next documentation
The framework was built with scalability in mind. For smaller projects, having a single file with all the translation might work, but for larger projects this approach quickly breaks down. i18next gives you the option to separate translations into multiple
www.i18next.com
4. CDN
http://cdnjs.com/libraries/i18next
i18next - Libraries - cdnjs - The #1 free and open source CDN built to make life easier for developers
i18next is a full-featured i18n javascript library for translating your web application. - Simple. Fast. Reliable. Content delivery at its finest. cdnjs is a free and open-source CDN service trusted by over 12.5% of all websites, serving over 200 billion r
cdnjs.com
5. Github
https://github.com/i18next/i18next
GitHub - i18next/i18next: i18next: learn once - translate everywhere
i18next: learn once - translate everywhere. Contribute to i18next/i18next development by creating an account on GitHub.
github.com
- 다른 js 에서 polyfill을 적용한 경우 jquery plugin 만 다운받아서 적용하면 됩니다. (javascript 소스내에 있는 polyfill 소스와 충돌하는 경우)
https://github.com/jquery-i18n-properties/jquery-i18n-properties
GitHub - jquery-i18n-properties/jquery-i18n-properties: lightweight jQuery plugin for providing internationalization to javascri
lightweight jQuery plugin for providing internationalization to javascript from ‘.properties’ files - GitHub - jquery-i18n-properties/jquery-i18n-properties: lightweight jQuery plugin for providing...
github.com
6. 다운로드
http://i18next.github.io/i18next/
i18next - i18n for javascript
i18next - translation made easy i18next is a full-featured i18n javascript library for translating your webapplication. runs in browser, under node.js, rhino and other javascript runtimes.
i18next.github.io
7. i18next-node
https://github.com/i18next/i18next-node
GitHub - i18next/i18next-node: [deprecated] can be replaced with v2 of i18next
[deprecated] can be replaced with v2 of i18next. Contribute to i18next/i18next-node development by creating an account on GitHub.
github.com
[References]
https://code-loving.tistory.com/6
[Jquery i18n] 다국어 지원 웹 개발, java .properties 파일을 JSON파일로 바꾸기
요즘 회사에서 다국어를 지원하는 웹을 개발하고 있다. 기존에는 서버를 호출하여 페이지를 뿌려주는 방식으로 개발하고 있었는데 (jsp사용) 최근에는 정적인 페이지로 바꾸면서 다국어 지원이
code-loving.tistory.com