[Golang] Unmarshal UTF-16 XML
How to parse a UTF-16 XML file in Go.
read more »How to parse a UTF-16 XML file in Go.
read more »Remove last character of UTF-8 string via utf8.DecodeLastRuneInString in Go.
read more »Given an URL, auto-detect and convert the encoding of the HTML document to UTF-8 if it is not UTF-8 encoded in Go.
read more »Given an URL, determine the encoding of the HTML document in Go using golang.org/x/net/html and golang.org/x/text packages.
read more »Reverse a string using for or range keyword in Go.
read more »Given a string with Chinese characters, convert the Chinese characters in the string to Pinyin (romanization system for Chinese) in Go.
read more »Given a rune value, check if the rune is a Chinese character.
read more »Calculate the length of string (UTF-8) in Go. Iterate over the UTF-8 string by for or range keyword.
read more »Know which language(s) users prefer on browsers in Go/GopherJS.
read more »Pelican static site generator - Localize theme with i18n_subsites plugin via custom Jinja2 filter. Implementation of gettext-like filter.
read more »Pelican static site generator - Support multilingual in Pelican theme. Translate strings according to default language of settings in the theme. (implement macro gettext)
read more »Client side gettext-like Internationalization (i18n) via AngularJS Directives.
read more »Client side gettext-like Internationalization (i18n) via AngularJS.
read more »Get UTF-8 string width (width of English letter is 1, width of CJK character is 2) in Go programming language.
read more »Convert Traditional Chinese PO file to Simplified Chinese via OpenCC and sed in Makefile.
read more »Automatically convert Traditional Chinese (zh_TW) PO file to Simplified Chinese (zh_CN) by OpenCC and Go programming language.
read more »Iterate over UTF-8 or non-ASCII strings in Go. Iterations by for or range keywords.
read more »Implement gettext function on front-end (browsers) by GopherJS. The gettext function translates a text string into the user's native language.
read more »Convert PO files to JSON format via Go. The data of JSON format can be passed to front-end by web servers to translate a text string into the user's native language. You can use the JSON data to implement gettext function in browsers.
read more »Convert PO files to JSON format via Python. The data of JSON format can be passed to front-end by web servers to translate a text string into the user's native language. You can use the JSON data to implement gettext function in browsers.
read more »Run Golang program in your browser by GopherJS. Access Accept-Language field in HTTP Request Header by JSONP to detect browser language preference (user locale).
read more »Run Golang program in your browser by GopherJS. Access window.navigator.language of NavigatorLanguage API to detect browser language preference (user locale).
read more »Use xgettext (one of GNU gettext utilities) to extract translatable strings from HTML templates of Go html/template.
read more »i18n (Internationalization) Go web applications by GNU gettext tools and html/template. Use PO and MO files generated by gettext in Golang web application to render HTML of specific languages by html/template.
read more »Automatically convert Traditional Chinese (zh_TW) PO file to Simplified Chinese (zh_CN) by OpenCC and Python programming language.
read more »Support multiple languages in your (web) applications, by GNU gettext tools, which include xgettext, msginit, msgmerge, and msgfmt.
read more »Use regular expression in Python to search and find strings marked for i18n (Internationalization)
read more »i18n and L10n of Google App Engine Python web application, with webapp2, Jinja2, Babel, and pytz.
read more »