(function(globals) { var django = globals.django || (globals.django = {}); django.pluralidx = function(n) { var v=(n != 1); if (typeof(v) == 'boolean') { return v ? 1 : 0; } else { return v; } }; /* gettext library */ django.catalog = django.catalog || {}; var newcatalog = { " in cart": "no carrinho", "+ New \u0441omment": "+ Novo coment\u00e1rio", "Accept": "Aceitar", "Activate in Ubisoft Connect": "Ativar em Ubisoft Connect", "Add to \u0441art": "Adicionar ao carrinho", "Amount is required": "O valor \u00e9 obrigat\u00f3rio", "An error occurred, try again later": "Ocorreu um erro, tente novamente mais tarde", "Are you sure that you want to add game \"{0}\" to account {1}?": "Tem certeza de que deseja adicionar o jogo \"{0}\" na conta {1}?", "Cancel": "Cancelar", "Choose a payment method": "Selecione um m\u00e9todo de pagamento", "Choose profile picture that you like": "Escolha uma foto de perfil que voc\u00ea goste.", "Close": "Voltar", "Coming soon": "Em breve", "Contact Support": "Contate o suporte", "Continue shopping": "Continuar comprando", "Create account": "Criar conta", "Go back": "Voltar", "HIDE THIS": "OCULTAR", "Heya!": "Ol\u00e1!", "Hide filters": "Ocultar filtros", "In cart": "No carrinho", "Include a-z, A-Z, 0-9 or symbols for a stronger password": "Inclua simbolos de a-z, A-Z, 0-9 para uma senha forte", "Incorrect CAPTCHA": "CAPTCHA incorreto", "Incorrect email": "Email incorreto", "Incorrect password": "Senha incorreta", "Just click to add a game to favo... wait a second, you are not logged in! You'll need to register or log in to do that!": "Basta clicar para adicionar um jogo aos favoritos... espere a\u00ed, voc\u00ea n\u00e3o est\u00e1 logado! Voc\u00ea precisa se cadastrar ou fazer login para fazer isso!", "Just {0} or {1} and make history!": "Apenas {0} ou {1} e fa\u00e7a hist\u00f3ria!", "Login to Ubisoft": "Fa\u00e7a login em sua conta Ubisoft Connect", "Max available payout amount": "Valor m\u00e1ximo de pagamento dispon\u00edvel", "Min payout amount": "Valor m\u00ednimo de pagamento", "No": "N\u00e3o", "No copy&paste": "Sem copiar&colar", "No match": "Nenhuma correspond\u00eancia", "No user comments yet": "Ainda n\u00e3o h\u00e1 coment\u00e1rios de usu\u00e1rios", "Not a valid file type, images and PDF supported only": "Tipo de arquivo inv\u00e1lido. Apenas imagens e PDF s\u00e3o suportados.", "Nothing has been said about this yet. You will literally be the first person to say something about it.": "Nada foi dito sobre isso ainda. Voc\u00ea ser\u00e1 a primeira pessoa a comentar.", "Out of stock": "Esgotado", "POST": "POSTAR", "Password must contain at least 8 characters": "A sua senha deve conter pelo menos 8 caracteres", "Please agree to the Privacy Policy": "Por favor, aceite a Polit\u00edca de Privacidade", "Please agree to the conditions": "Por favor, aceite as condi\u00e7\u00f5es", "Please agree to the privacy policy": "Por favor, aceite a Polit\u00edca de Privacidade", "Please agree to the terms and conditions": "Por favor, aceite os termos e condi\u00e7\u00f5es", "Please attach your invoice": "Anexe sua fatura, por favor", "Please select a file less than 10Mb": "Selecione um arquivo com menos de 10 MB.", "Please {0} or {1} to comment": "Por favor, {0} ou {1} para comentar", "Privacy policy": "Politica de Privacidade", "Product added to cart": "Produto adicionado ao carrinho", "Reply": "Responder", "Reply from GamersGate": "Buscar por g\u00eanero", "Required": "Obrigat\u00f3rio", "Search by game genres": "Buscar por g\u00eanero", "Search results": "Resultados da busca", "Search results for": "Resultados de busca para", "Show all results": "Mostrar todos os resultados", "Show less": "Mostrar menos", "Show more": "Mostrar mais", "Sign In": "Entrar", "The confirmation email must be entered manually": "O e-mail de confirma\u00e7\u00e3o deve ser inserido manualmente.", "The emails you've entered do not match": "Os emails que inseriu n\u00e3o correspondem.", "The emails you've entered should match": "Os emails que inseriu n\u00e3o correspondem.", "The passwords you've entered do not match": "As senhas que inseriu n\u00e3o correspondem", "Type your comment": "Voc\u00ea estar\u00e1 comentando como", "Type your email": "Escreva seu email", "Type your name": "Escreva seu nome", "Type your valid phone number": "Digite um n\u00famero de Celular v\u00e1lido", "Unfortunately there are no payment options available in your location at the moment. Please, check back later. We apologize for the inconvenience.": "Infelizmente n\u00e3o h\u00e1 op\u00e7\u00f5es de pagamento dispon\u00edveis na sua regi\u00e3o no momento. Por favor, tente novamente mais tarde. Pedimos desculpas pelo transtorno.", "Username must not be empty or longer than 30 characters": "O nome de usu\u00e1rio n\u00e3o pode estar vazio ou conter mais de 30 caracteres", "Username should contain only letters, numbers and underscore (the \"_\" symbol)": "O seu nome de usu\u00e1rio deve conter apenas letras, n\u00fameros ou o s\u00edmbolo _", "View cart": "Ver carrinho", "Yes": "Sim", "You will be commenting as": "Voc\u00ea estar\u00e1 comentando como", "Your comment should not be empty or longer than 3000 symbols": "Seu coment\u00e1rio n\u00e3o pode estar vazio ou conter mais de 3000 caracteres", "Your message can not be empty": "Sua mensagem n\u00e3o pode estar vazia", "at": "em", "product": [ "produto", "produtos" ], "result": [ "resultado", "resultados" ] }; for (var key in newcatalog) { django.catalog[key] = newcatalog[key]; } if (!django.jsi18n_initialized) { 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.constructor === Array ? value[django.pluralidx(count)] : value; } }; 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": "Y-m-d H:i:s", "DATETIME_INPUT_FORMATS": [ "%Y-%m-%d %H:%M:%S", "%Y-%m-%d %H:%M:%S.%f", "%Y-%m-%d %H:%M", "%m/%d/%Y %H:%M:%S", "%m/%d/%Y %H:%M:%S.%f", "%m/%d/%Y %H:%M", "%m/%d/%y %H:%M:%S", "%m/%d/%y %H:%M:%S.%f", "%m/%d/%y %H:%M" ], "DATE_FORMAT": "Y-m-d", "DATE_INPUT_FORMATS": [ "%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y", "%b %d %Y", "%b %d, %Y", "%d %b %Y", "%d %b, %Y", "%B %d %Y", "%B %d, %Y", "%d %B %Y", "%d %B, %Y" ], "DECIMAL_SEPARATOR": ".", "FIRST_DAY_OF_WEEK": 0, "MONTH_DAY_FORMAT": "F j", "NUMBER_GROUPING": 0, "SHORT_DATETIME_FORMAT": "m/d/Y P", "SHORT_DATE_FORMAT": "m/d/Y", "THOUSAND_SEPARATOR": ",", "TIME_FORMAT": "P", "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; django.jsi18n_initialized = true; } }(this));