Skip to content

Instantly share code, notes, and snippets.

@dixonsiu
Created August 3, 2017 06:23
Show Gist options
  • Save dixonsiu/5e12aabf74557d367eff558ad5445f3a to your computer and use it in GitHub Desktop.
Save dixonsiu/5e12aabf74557d367eff558ad5445f3a to your computer and use it in GitHub Desktop.
$('dispMsg').html(i18next.t("msg.error.fileNotFound");
<div id="dispMsg">File not found.</div>
i18next.changeLanguage("ja");
$('[data-i18n]').localize(); // need jQuery-i18next
<div id="dispMsg">File not found.</div>
$('#dispMsg').attr("data-i18n", "msg.error.fileNotFound")
.localize();
<div id="dispMsg" data-i18n="msg.error.fileNotFound">File not found.</div>
i18next.changeLanguage("ja");
$('[data-i18n]').localize(); // need jQuery-i18next
<div id="dispMsg" data-i18n="msg.error.fileNotFound">ファイルがないです。</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment