Polyglot


SUBMITTED BY: dertivc

DATE: Dec. 9, 2015, 3:56 a.m.

FORMAT: Java

SIZE: 4.5 kB

HITS: 286

  1. // CloudFlare: Common
  2. // ===================
  3. // We use Polyglot for translations
  4. // ---------------------------------
  5. // Polyglot.js (c) 2012 Airbnb, Inc.
  6. //
  7. // polyglot.js may be freely distributed under the terms of the BSD
  8. // license. For all licensing information, details, and documention:
  9. // http://airbnb.github.com/polyglot.js
  10. !function(e){"use strict";function t(e){e=e||{},this.phrases=e.phrases||{},this.currentLocale=e.locale||"en"}function n(e){return"shared.pluralize."+e}function o(e){var t,n,r,i={};for(t in e)if(e.hasOwnProperty(t)){n=e[t];for(r in n)i[n[r]]=t}return i}function u(e){var t=/^\s+|\s+$/g;return e.replace(t,"")}function a(e,t,n){var i,s,o;return n!=null&&e?(s=e.split(r),o=s[l(t,n)]||s[0],i=u(o)):i=e,i}function f(e){var t=o(s);return t[e]||t.en}function l(e,t){return i[f(e)](t)}function c(e,t){for(var n in t)n!=="_"&&t.hasOwnProperty(n)&&(e=e.replace(new RegExp("%\\{"+n+"\\}","g"),t[n]));return e}function h(t){e.console&&e.console.warn&&e.console.warn("WARNING: "+t)}function p(e){var t={};for(var n in e)t[n]=e[n];return t}t.VERSION="0.2.0",t.prototype.locale=function(e){return e&&(this.currentLocale=e),this.currentLocale},t.prototype.extend=function(e){for(var t in e)e.hasOwnProperty(t)&&(this.phrases[t]=e[t])},t.prototype.clear=function(){this.phrases={}},t.prototype.replace=function(e){this.clear(),this.extend(e)},t.prototype.t=function(e,t){var n;t=t||{};var r=this.phrases[e]||t._||"";return r===""?(h('Missing translation for key: "'+e+'"'),n=e):(t=p(t),t.smart_count!=null&&t.smart_count.length!=null&&(t.smart_count=t.smart_count.length),n=a(r,this.currentLocale,t.smart_count),n=c(n,t)),n},t.prototype.pluralize=function(e,t){t!=null&&t.length!=null&&(t=t.length);var r=n(e);return this.t(r,{smart_count:t})};var r="||||",i={chinese:function(e){return 0},german:function(e){return e!==1?1:0},french:function(e){return e>1?1:0},russian:function(e){return e%10===1&&e%100!==11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2},czech:function(e){return e===1?0:e>=2&&e<=4?1:2},polish:function(e){return e===1?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2},icelandic:function(e){return e%10!==1||e%100===11?1:0}},s={chinese:["id","ja","ko","ms","th","tr","zh"],german:["da","de","en","es","fi","el","he","hu","it","nl","no","pt","sv"],french:["fr","tl"],russian:["hr","ru"],czech:["cs"],polish:["pl"],icelandic:["is"]};typeof module!="undefined"&&module.exports?module.exports=t:e.Polyglot=t}(this);
  11. (function($, Polyglot, window, navigator, undefined){
  12. var polyglot = window.polyglot = new Polyglot();
  13. // Process tranlations
  14. function translate( json ){
  15. if( !json ){ return false; }
  16. polyglot.extend( json );
  17. $.each( polyglot.phrases, function( key, val ){ $('[data-translate='+key+']').html( val ); });
  18. }
  19. // Piece links back together if they were split apart
  20. function unobfuscateLinks(){
  21. $('a[data-orig-ref]').each(function(){
  22. var $el = $(this),
  23. proto = $el.data('orig-proto') || '',
  24. url = $el.data('orig-ref') || '';
  25. url = (proto.length ? proto+'://' : '') + url;
  26. $el.attr('href', url );
  27. });
  28. }
  29. $('html')
  30. // Let everything know that JS is ready/enabled
  31. .toggleClass('no-js js')
  32. // Hide all HTML content until the DOM is ready (used to prevent translation text from flashing)
  33. .css({ 'visibility' : 'hidden', 'opacity': 0 });
  34. // Once the DOM is ready
  35. $(function(){
  36. var alertContainer = $('<label/>',{'class':'alert alert-error'}),
  37. languageSelect = $('#lang-selector');
  38. // Process translations if it exists
  39. if( window._cf_translation ){
  40. // Setup the translation object, run through all translations, and show the body again
  41. polyglot.locale = window._cf_translation.locale;
  42. translate( window._cf_translation.blobs );
  43. languageSelect.val( polyglot.locale );
  44. }
  45. // Translate obfuscated links back to clickable links.
  46. unobfuscateLinks();
  47. // Show the page to the user
  48. $('html').css({ 'opacity': 1, 'visibility' : 'visible' });
  49. // Go grab the requested language
  50. languageSelect.on('change', function( evt ){
  51. var lang = evt.target.value;
  52. if( lang ){
  53. $.getJSON('/cdn-cgi/scripts/lang/waf/'+lang+'.json', function( data ){
  54. polyglot.locale = lang;
  55. translate( data );
  56. });
  57. }
  58. });
  59. // If cookies aren't enabled, let the visitor know
  60. if( !navigator.cookieEnabled ){
  61. $('#cookie-alert').show();
  62. }
  63. });
  64. })( window.$, window.Polyglot, window, navigator );

comments powered by Disqus