

(function (globals) {

  var django = globals.django || (globals.django = {});

  
  django.pluralidx = function (count) { return (count == 1) ? 0 : 1; };
  

  
  /* gettext library */

  django.catalog = {
    "%(count)s results": "Wyniki: %(count)s", 
    "All %(count)s results": "Wszystkie wyniki: %(count)s", 
    "Cancel": "Anuluj", 
    "Click to insert your credentials": "Kliknij, by doda\u0107 swoje dane logowania", 
    "Could not load project credentials.": "Nie uda\u0142o si\u0119 wczyta\u0107 danych logowania dla projektu.", 
    "Could not load projects list.": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 listy projekt\u00f3w.", 
    "Could not save your project selection.": "Nie uda\u0142o si\u0119 zapisa\u0107 ustawie\u0144 projektu.", 
    "Credentials": "Dane logowania", 
    "History Preferences": "Preferencje historii", 
    "How can we improve this page?": "Jak mo\u017cemy udoskonali\u0107 t\u0119 stron\u0119?", 
    "Insert": "Wstaw", 
    "Insert credential": "Wstaw dane logowania", 
    "It doesn't have what I need.": "Strona nie zawiera informacji, kt\u00f3rych potrzebuj\u0119.", 
    "It's inaccurate.": "Adres strony jest niedok\u0142adny.", 
    "Loading credentials...": "Wczytywanie danych logowania...", 
    "Loading projects...": "Wczytywanie projekt\u00f3w...", 
    "Loading your history...": "Wczytywanie historii...", 
    "Most Recently Visited": "Ostatnio odwiedzone", 
    "My Most Visited": "Najcz\u0119\u015bciej odwiedzane", 
    "Other (use text area above)": "Inne (wpisz informacje w polu tekstowym powy\u017cej)", 
    "Project": "Projekt", 
    "Sign in to insert your credentials.": "Zaloguj si\u0119, by wstawi\u0107 kod osobisty", 
    "Sign in to view your recently visited pages.": "Zaloguj si\u0119, by wy\u015bwietli\u0107 ostatnio odwiedzane strony.", 
    "Sorry. We couldn't load the credentials for this project. You can visit the %(start_link)sDevelopers Console%(end_link)s to see them.": "Sorry. We couldn't load the credentials for this project. You can visit the %(start_link)sDevelopers Console%(end_link)s to see them.", 
    "Sorry. We couldn't load your projects. You can visit the %(start_link)sDevelopers Console%(end_link)s to see them.": "Sorry. We couldn't load your projects. You can visit the %(start_link)sDevelopers Console%(end_link)s to see them.", 
    "The Google Developers website now saves the pages you visit when you are logged into Google. You can quickly access them via the history icon at the top of the site. %(link_html)sManage History%(end_link_html)s": "Witryna Google Developers zapisuje teraz strony odwiedzane przez u\u017cytkownika po zalogowaniu na konto Google. Do zapisanych stron mo\u017cesz szybko uzyska\u0107 dost\u0119p za pomoc\u0105 ikony historii na g\u00f3rze strony. %(link_html)sZarz\u0105dzaj histori\u0105%(end_link_html)s", 
    "There's a typo, broken link, or layout problem.": "Na stronie jest liter\u00f3wka, uszkodzony link lub problem z uk\u0142adem strony.", 
    "This project has no appropriate credentials. You can add one in the %(start_link)sDevelopers Console%(end_link)s.": "This project has no appropriate credentials. You can add one in the %(start_link)sDevelopers Console%(end_link)s.", 
    "Turn on %(begin_link_html)shistory%(end_link_html)s to view recently visited pages.": "W\u0142\u0105cz %(begin_link_html)shistori\u0119%(end_link_html)s, by wy\u015bwietli\u0107 ostatnio odwiedzane strony.", 
    "You have no projects. You can create one in the %(start_link)sDevelopers Console%(end_link)s.": "You have no projects. You can create one in the %(start_link)sDevelopers Console%(end_link)s.", 
    "Your browsing history on Google Developers will appear here.": "Twoja historia przegl\u0105dania w Google Developers pojawi si\u0119 tutaj."
  };

  django.gettext = function (msgid) {
    var value = django.catalog[msgid];
    if (typeof(value) == 'undefined') {
      return msgid;
    } else {
      return (typeof(value) == 'string') ? value : value[0];
    }
  };

  django.ngettext = function (singular, plural, count) {
    var value = django.catalog[singular];
    if (typeof(value) == 'undefined') {
      return (count == 1) ? singular : plural;
    } else {
      return value[django.pluralidx(count)];
    }
  };

  django.gettext_noop = function (msgid) { return msgid; };

  django.pgettext = function (context, msgid) {
    var value = django.gettext(context + '\x04' + msgid);
    if (value.indexOf('\x04') != -1) {
      value = msgid;
    }
    return value;
  };

  django.npgettext = function (context, singular, plural, count) {
    var value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count);
    if (value.indexOf('\x04') != -1) {
      value = django.ngettext(singular, plural, count);
    }
    return value;
  };
  

  django.interpolate = function (fmt, obj, named) {
    if (named) {
      return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])});
    } else {
      return fmt.replace(/%s/g, function(match){return String(obj.shift())});
    }
  };


  /* formatting library */

  django.formats = {
    "DATETIME_FORMAT": "j E Y H:i", 
    "DATETIME_INPUT_FORMATS": [
      "%d.%m.%Y %H:%M:%S", 
      "%d.%m.%Y %H:%M:%S.%f", 
      "%d.%m.%Y %H:%M", 
      "%d.%m.%Y", 
      "%Y-%m-%d %H:%M:%S", 
      "%Y-%m-%d %H:%M:%S.%f", 
      "%Y-%m-%d %H:%M", 
      "%Y-%m-%d"
    ], 
    "DATE_FORMAT": "j E Y", 
    "DATE_INPUT_FORMATS": [
      "%d.%m.%Y", 
      "%d.%m.%y", 
      "%y-%m-%d", 
      "%Y-%m-%d"
    ], 
    "DECIMAL_SEPARATOR": ",", 
    "FIRST_DAY_OF_WEEK": "1", 
    "MONTH_DAY_FORMAT": "j F", 
    "NUMBER_GROUPING": "3", 
    "SHORT_DATETIME_FORMAT": "d-m-Y  H:i", 
    "SHORT_DATE_FORMAT": "d-m-Y", 
    "THOUSAND_SEPARATOR": "\u00a0", 
    "TIME_FORMAT": "H:i", 
    "TIME_INPUT_FORMATS": [
      "%H:%M:%S", 
      "%H:%M:%S.%f", 
      "%H:%M"
    ], 
    "YEAR_MONTH_FORMAT": "F Y"
  };

  django.get_format = function (format_type) {
    var value = django.formats[format_type];
    if (typeof(value) == 'undefined') {
      return format_type;
    } else {
      return value;
    }
  };

  /* add to global namespace */
  globals.pluralidx = django.pluralidx;
  globals.gettext = django.gettext;
  globals.ngettext = django.ngettext;
  globals.gettext_noop = django.gettext_noop;
  globals.pgettext = django.pgettext;
  globals.npgettext = django.npgettext;
  globals.interpolate = django.interpolate;
  globals.get_format = django.get_format;

}(this));

