
/* gettext library */

var catalog = new Array();

function pluralidx(count) { return (count == 1) ? 0 : 1; }
catalog['<b>Sign up</b> or sign in'] = '<b>Registreren</b> of aanmelden';
catalog['Add a link'] = 'Link toevoegen';
catalog['An email has been sent to <b></b> that you can use to reset your password.'] = 'Er is een e-mail verzonden naar <b></b> die u kunt gebruiken om uw wachtwoord opnieuw in te stellen.';
catalog['Done'] = 'Klaar';
catalog['Drag new search buttons to above.'] = 'Sleep nieuwe zoekknoppen naar boven.';
catalog['Email:'] = 'E-mail:';
catalog['Enter a valid email address.'] = 'Voer een geldig adres in.';
catalog['Gmail:http://mail.google.com/;Maps:http://maps.google.com/;News:http://news.google.com/;Facebook:http://www.facebook.com/'] = 'Gmail:http://mail.google.com/;Maps:http://maps.google.com/;Nu.nl:http://www.nu.nl/;Facebook:http://www.facebook.com/;9292ov:http://www.9292ov.nl/';
catalog['Let me change my password'] = 'Mijn wachtwoord veranderen';
catalog['New link'] = 'Nieuwe link';
catalog['No account with this address.'] = 'Geen account met dit adres.';
catalog['No page was found at the specified URL.'] = 'Geen pagina gevonden op deze URL.';
catalog['Password:'] = 'Wachtwoord:';
catalog['Please enter your email.'] = 'Voer uw e-mailadres in.';
catalog['Please enter your password.'] = 'Voer uw wachtwoord in.';
catalog['Remove'] = 'Verwijderen';
catalog['Reset'] = 'Reset';
catalog['Shorter password please.'] = 'Korter wachtwoord graag.';
catalog['Sign in to save your changes.'] = 'Meld je aan om te bewaren.';
catalog['Sign in'] = 'Aanmelden';
catalog['Sign out'] = 'Afmelden';
catalog['Signing in\u2026'] = 'Aanmelden\u2026';
catalog['Sorry, we could not activate your account.<br>Please try again or contact us.'] = 'Excuses, het is niet gelukt je account te activeren.<br>Probeer het opnieuw of neem contact met ons op.';
catalog['Thank you for activating your account!'] = 'Bedankt voor het activeren van je account!';
catalog['Thanks for creating a custom branded Spudu page. Here it is!'] = 'Bedankt voor het maken van een branded Spudu-pagina. Hier is ie dan!';
catalog['URL:'] = 'URL:';
catalog['Wrong password'] = 'Verkeerd wachtwoord';
catalog['amazon;bing;craigslist;ebay;google;imdb;torrentz;twitter;wikipedia;yahoo;youtube'] = 'bol;googlenl;imdb;kieskeurig;marktplaats;torrentz;twitter;vandale;wikipedianl;youtube';
catalog['google;youtube;amazon;twitter'] = 'googlenl;youtube;bol;twitter';


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

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

function gettext_noop(msgid) { return msgid; }

function interpolate(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())});
  }
}

