Babel user information
fr-N Cet utilisateur a pour langue maternelle le français.
en-4 This user has near native speaker knowledge of English.
de-3 Dieser Benutzer beherrscht Deutsch auf hohem Niveau.
es-2 Esta persona tiene un conocimiento intermedio del español.
Users by language

I am User:Kipcool. I didn't know SUL was enabled here.

List of properties edit

Current state edit

bugs edit

links to Wikipedia in the user language edit

WikidataID and wgUserLanguage must be given.

http://www.wikidata.org/w/api.php?action=wbgetentities&format=json&ids=Q41055&props=labels&languages=fr

  WikidataID = Q41055; // or whatever
  $.getJSON("http://www.wikidata.org/w/api.php?action=wbgetentities&format=json&callback=?",
  {ids: WikidataID, props: "labels", languages: wgUserLanguage},
  function(data) {
    WikidataIDString = WikidataID.toLowerCase();
    WParticleTitle = data.entities[WikidataIDString].labels[wgUserLanguage].value;
    if ( WParticleTitle != "" ) {
    WPUrl = "http://" + wgUserLanguage + ".wikipedia.org/wiki/" + WParticleTitle;
    } // if WParticleTitle
  }); // if getJSON returns data