i18next context sample

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/i18next/1.7.2/i18next.js"></script>
<dl>
  <dt>ja</dt>
  <dd id="ja"></dd>
  <dt>ja (lowercase)</dt>
  <dd id="ja_low"></dd>
  <dt>en</dt>
  <dd id="en"></dd>
  <dt>en (lowercase)</dt>
  <dd id="en_low"></dd>
</dl>

CoffeeScript

i18n.init
  resStore:
    ja:
      translation:
        action: "Eine Aktion"
    en:
      translation:
        action: "An Action"
        action_lowercase: "an action"
  lng: "ja"

$("#ja").text i18n.t "action"
$("#ja_low").text i18n.t "action", context: "lowercase"

i18n.setLng "en"
$("#en").text i18n.t "action"
$("#en_low").text i18n.t "action", context: "lowercase"