(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": " im Warenkorb", "+ New \u0441omment": "+ Neuer Kommentar", "Accept": "Akzeptieren", "Activate in Ubisoft Connect": "Auf Ubisoft Connect aktivieren", "Add to \u0441art": "Zum Warenkorb hinzuf\u00fcgen", "An error occured, try again later": "Es ist ein Fehler aufgetreten, bitte versuche es sp\u00e4ter noch einmal", "Are you sure that you want to add game \"{0}\" to account {1}?": "Bist du sicher, dass du das Spiel \"{0}\" zum Konto {1} hinzuf\u00fcgen willst?", "Cancel": "Abbrechen", "Choose a payment method": "W\u00e4hle eine Bezahlungsmethode", "Choose profile picture that you like": "W\u00e4hle ein Profilbild, das dir gef\u00e4llt", "Close": "Schlie\u00dfen", "Continue shopping": "Einkauf fortsetzen", "Create account": "Nutzerkonto anlegen", "Go back": "Zur\u00fcck", "HIDE THIS": "VERSTECKEN", "Heya!": "Hey!", "In cart": "Im Warenkorb", "Include a-z, A-Z, 0-9 or symbols for a stronger password": "Verwende a-z, A-Z, 0-9 oder Symbole f\u00fcr ein sichereres Passwort", "Incorrect CAPTCHA": "CAPTCHA falsch gel\u00f6st", "Incorrect email": "Inkorrekte Email", "Incorrect password": "Falsches Passwort", "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!": "Klicke einfach auf ein Spiel, um es zu deinen Favo... - Moment mal, du bist gar nicht eingeloggt!Daf\u00fcr musst du dich erst registrieren.", "Just click to learn when the price dro... wait, you are not authorized to do that yet! You'll need to register or log in to gain access to this feature!": "Einfach klicken, um zu erfahren, wann der Presi f... - moment, du bist zur Nutzung dieser Funktion noch nicht autorisiert!Du musst dich registrieren oder anmelden, um Zugang zu dieser Funktion zu erhalten.", "Just {0} or {1} and make history!": "Einfach {0} oder {1} - und schreibe Geschichte!", "Login to Ubisoft": "Anmeldung bei Ubisoft", "Min payout amount": "Minimaler Auszahlungsbetrag", "No": "Nein", "No copy&paste": "Kein Kopieren und Einf\u00fcgen", "No match": "Keine \u00dcbereinstimmung", "No user comments yet": "Noch keine Nutzer-Kommentare", "Not a valid file type, images and PDF supported only": "Unzul\u00e4ssiger Dateityp, nur Bildformate und PDF-Dateien werden unterst\u00fctzt", "Nothing has been said about this yet. You will literally be the first person to say something about it.": "Hier\u00fcber ist noch nichts gesagt worden. Du wirst buchst\u00e4blich die erste Person sein, die hierzu einen Kommentar abgibt.", "POST": "ABSCHICKEN", "Password must contain at least 8 characters": "Das Passwort muss mindestens 8 Zeichen lang sein", "Please agree to the conditions": "Bitte stimme den Bediingungen zu", "Please agree to the privacy policy": "Bitte stimme der Datenschutz-Richtlinie zu", "Please agree to the terms and conditions": "Bitte stimme den Nutzungsbedingungen zu", "Please attach your invoice": "Bitte f\u00fcge deine Rechnung bei", "Please select a file less than 10Mb": "Bitte w\u00e4hle eine Datei mit weniger als 10 Mb", "Please {0} or {1} to comment": "Zum Kommentieren bitte {0} oder {1}", "Privacy policy": "Datenschutz-Regeln", "Product added to cart": "Produkt zum Warenkorb hinzugef\u00fcgt", "Reply": "Antworten", "Reply from GamersGate": "Antwort von GamersGate", "Required": "Ben\u00f6tigt", "Search by game genres": "Suche nach Spiel-Genres", "Search results": "Suchergebnisse", "Search results for": "Suche nach Ergebnissen f\u00fcr", "Show all results": "Alle Ergebnisse anzeigen", "Show more": "Mehr anzeigen", "Sign In": "Anmelden", "The emails you've entered do not match": "Die eingegebenen Email-Adressen stimmen nicht \u00fcberein", "The emails you've entered should match": "Die eingegebenen Email-Adressen stimmen nicht \u00fcberein", "The passwords you've entered do not match": "Die eingegebenen Passworte stimmen nicht \u00fcberein", "Type your comment": "Gib deinen Kommentar ein", "Type your email": "Gib deine Email-Adresse ein", "Type your name": "Gib deinen Namen ein", "Unfortunately there are no payment options available in your location at the moment. Please, check back later. We apologize for the inconvenience.": "Leider sind derzeit in deiner Region keine Zahlungsmethoden verf\u00fcgbar, bitte versuche es sp\u00e4ter noch einmal. Wir bitten um Entschuldigung f\u00fcr die Unannehmlichkeiten.", "Username must not be empty or longer than 30 characters": "Der Nutzername darf nicht leer oder l\u00e4nger als 30 Zeichen sein", "Username should contain only letters, numbers and underscore (the \"_\" symbol)": "Der Nutzername darf nur Buchstaben, Ziffern und den Unterstrich (das \"_\"-Zeichen) enthalten", "View cart": "Warenkorb ansehen", "Yes": "Ja", "You will be commenting as": "Du wirst kommentieren als", "Your comment should not be empty or longer than 3000 symbols": "Dein Kommentar sollte nicht leer sein und nicht mehr als 3000 Zeichen enthalten.", "Your message can not be empty": "Die Nachricht darf nicht leer sein", "at": "um", "product": [ "Produkt", "Produkte" ], "result": [ "Treffer", "Treffer" ] }; 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));