Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $(document).ready(function(){
  2.     $.i18n.properties({
  3.         name: 'messages',
  4.         path: '/i18n?',
  5.         mode: 'map',
  6.         cache: true,
  7.         language: 'kk'
  8.     });
  9.    
  10.     alert($.i18n.prop('label.hello.world'));
  11. });