mylangsArray = ;
dodatkowePrzyciskiOpisuEdycjiUstawienia = [
{opis: 'szablony problemów', skrot: 'sz.pr.', nrWiersza: 1, kolorTla: 'whitesmoke'},
{opis: 'potrzebne źródła', skrot: 'p.źródła', nrWiersza: 1, kolorTla: 'whitesmoke'},
{opis: 'potrzebne przypisy w artykule zamiast bibliografii lub linków zewnętrznych', skrot: 'p.przypisy', nrWiersza: 1, kolorTla: 'whitesmoke'},
{opis: 'dopracować', skrot: 'dopr.', nrWiersza: 1, kolorTla: 'whitesmoke'},
{opis: 'potrzebna aktualizacja', skrot: 'p.akt.', nrWiersza: 1, kolorTla: 'whitesmoke'},
{opis: '+źródła', skrot: '+źr', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: '+1', skrot: '+1', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'posortowano', skrot: 'sort', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'uaktualniono', skrot: 'akt.', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'współrzędne geograficzne', skrot: 'koord.', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'przekierowanie', skrot: 'redir.', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'poprawa martwego linku zewnętrznego', skrot: 'martwy', nrWiersza: 2, kolorTla: 'blanchedalmond'},
{opis: 'drobne językowe', skrot: 'dr.jęz.', nrWiersza: 2, kolorTla: 'deepskyblue', kolorTekstu:'azure'},
{opis: 'drobne gramatyczne', skrot: 'dr.gram.', nrWiersza: 2, kolorTla: 'deepskyblue', styl:'color:azure;'},
{funkcja: function() { wp_sk.cleanup(document.getElementById('wpTextbox1')); }, skrot: 'wp sk', nrWiersza: 52, kolorTla: 'white'},
{funkcja: "alert('pokaż się')", skrot: 'alert', nrWiersza: 52, kolorTla: 'white'},
{funkcja: function(){ alert('pokaż się'); }, skrot: 'alert', nrWiersza: 52, kolorTla: 'white'},
{funkcja: new Function("alert('pokaż się')"), skrot: 'alert', nrWiersza: 52, kolorTla: 'white'}
];
importScript('Wikipedysta:Lampak/MyLanguages.js');
importScript('Wikipedysta:Skalee/dodatkowe przyciski opisu edycji.js');
importScript('Wikipedysta:Matma Rex/cytuj stronę.js');
var tmp_VERSION = '0.1';
var dodatkoweLinkiUstawienia = {gorneLinki: };
var dodatkoweLinki = {ver: tmp_VERSION, version: tmp_VERSION};
dodatkoweLinki.init = function() {
var topLinks = $('#p-personal');
if (topLinks.length > 0 && dodatkoweLinkiUstawienia.gorneLinki !== undefined && dodatkoweLinkiUstawienia.gorneLinki.length > 0) {
addTopLinks(topLinks, dodatkoweLinkiUstawienia.gorneLinki);
}
};
dodatkoweLinki.addTopLinks = function(container, settings) {
alert('topLinks');
var i, elem;
for (i in settings) {
console.log(settings.artykul);
elem = $('<a></a>');
elem.innerHtml = settings.opis || settings.artykul;
elem.attr('href', dodatkoweLinki.fullUrl(settings.artykul));
if (settings.klawisz) {
elem.attr('accesskey', settings.klawisz);
}
container.append(elem);
}
};
dodatkoweLinki.fullUrl = function(articleName) {
return 'http://pl.wikipedia.orghttps://wikifreehand.com/pl/' + articleName;
};
dodatkoweLinki.init();