Skip to main content

Thank a volunteer. We use the proceeds from the store to send thank you gifts to the volunteers who make Wikipedia possible.






















Thank a volunteer. We use the proceeds from the store to send thank you gifts to the volunteers who make Wikipedia possible.















@wikipediastore




Wikipedia store on Instagram






About us



Wikipedia volunteers are special. They hail from all across the globe, representing every professional and personal experience one can imagine. They donate tons of hours per year to writing and editing Wikipedia. Without them, we would not exist.


We can’t thank them enough - but we’re trying. That’s why we created the Merchandise Giveaway Program, amongst other projects. Through it, any Wikipedia user can nominate a Wikipedia contributor to receive a free gift in the mail.




We had a great time finding creative and sustainable merchandise for this program. When people started asking if they could buy our shirts, bags and pens, we thought - why not?


What goes around, comes around. We invite you to support the community with your purchase. Thank you for being a part of it!





















All content is available under the Creative Commons Attribution-ShareAlike 3.0 License unless otherwise noted.


Copyright © 2019 Wikipedia Store. Wikipedia® is a registered trademark of the Wikimedia Foundation.


See the Wikimedia Trademark Policy for more details.


WikiMedia Foundation



You are using an outdated browser. Please upgrade your browser or activate Google Chrome Frame to improve your experience.



function postViaIFrame()
// Create the iframe for the form and use it as the form's target
var frameName = "shopEmailFrame";
var $form = $("form#join-form");
if ($("iframe[name=" + frameName + "]").length == 0)
var $iframe = $('');
$form.attr("target", $iframe.attr("name"));
$form.after($iframe);

$form[0].submit();

$(document).ready(function()
$("#join-form input[type='submit']").bind("click", function()
if ($("form#join-form input[name='Email']").val() == "")
$("form#join-form input[name='Email']").addClass("error");
$("form#join-form #errorMessageContainerId").show();
return false;

else
postViaIFrame();
$("form#join-form").hide();
$("form#join-form").after("

Thank you for signing up!");
return false;

);
);





var currencySymbols =
AUD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_AUD.png?0",
CAD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CAD.png?0",
CHF: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CHF.png?0",
CNY: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CNY.png?0",
DKK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_DKK.png?0",
EUR: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_EUR.png?0",
GBP: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_GBP.png?0",
HKD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_HKD.png?0",
JPY: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_JPY.png?0",
NOK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_NOK.png?0",
NZD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_NZD.png?0",
RUB: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_RUB.png?0",
SEK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_SEK.png?0",
SGD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_SGD.png?0",
TWD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_TWD.png?0",
USD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_USD.png?0"
;
console.log(currencySymbols);
Currency.format = 'money_with_currency_format';
var shopCurrency = 'USD';

/* Sometimes merchants change their shop currency, let's tell our JavaScript file */
Currency.moneyFormats[shopCurrency].money_with_currency_format = "$amount USD";
Currency.moneyFormats[shopCurrency].money_format = "$amount USD";

/* Default currency */
var defaultCurrency = 'USD';

/* Cookie currency */
var cookieCurrency = Currency.cookie.read();

/* Fix for customer account pages */
jQuery('span.money span.money').each(function()
jQuery(this).parents('span.money').removeClass('money');
);

/* Saving the current price */
jQuery('span.money').each(function()
jQuery(this).attr('data-currency-USD', jQuery(this).html());
);

// If there's no cookie.
if (cookieCurrency == null)
if (shopCurrency !== defaultCurrency)
Currency.convertAll(shopCurrency, defaultCurrency);

else
Currency.currentCurrency = defaultCurrency;


// If the cookie value does not correspond to any value in the currency dropdown.
else if (jQuery('[name=currencies]').size() && jQuery('[name=currencies] option[value=' + cookieCurrency + ']').size() === 0)
Currency.currentCurrency = shopCurrency;
Currency.cookie.write(shopCurrency);

else if (cookieCurrency === shopCurrency)
Currency.currentCurrency = shopCurrency;

else
Currency.convertAll(shopCurrency, cookieCurrency);


jQuery('[name=currencies]').val(Currency.currentCurrency).change(function()
var newCurrency = jQuery(this).val();

Currency.convertAll(Currency.currentCurrency, newCurrency);
jQuery('.selected-currency').text(Currency.currentCurrency);

jQuery('.currency-symbol').css('background-image', 'url("' + currencySymbols[newCurrency] + '")');

);

var original_selectCallback = window.selectCallback;
var selectCallback = function(variant, selector)
original_selectCallback(variant, selector);
Currency.convertAll(shopCurrency, jQuery('[name=currencies]').val());
$('.selected-currency').text(Currency.currentCurrency);
;

$('body').on('ajaxCart.afterCartLoad', function(cart)
Currency.convertAll(shopCurrency, jQuery('[name=currencies]').val());
$('.selected-currency').text(Currency.currentCurrency);
);
// initialize the height of drop-down menu
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) )
$('.selectpicker').selectpicker('mobile');
else
$('.selectpicker').selectpicker(
size: 6,
mobile: false
);

$('.selected-currency').text(Currency.currentCurrency);

// add current currency flag for toggle button
$('.bootstrap-select').append('');
jQuery('.currency-symbol').css('background-image', 'url("' + currencySymbols[Currency.currentCurrency] + '")');

// add flag for each option
$(document).ready(function()
$('.dropdown-menu').children('li').each(function()
var symbolText = $(this).text();
$(this).children().css('background-image', 'url("' + currencySymbols[symbolText] + '")');
);
);

Popular posts from this blog

Masuk log Menu navigasi

Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

Старые Смолеговицы Содержание История | География | Демография | Достопримечательности | Примечания | НавигацияHGЯOLHGЯOL41 206 832 01641 606 406 141Административно-территориальное деление Ленинградской области«Переписная оброчная книга Водской пятины 1500 года», С. 793«Карта Ингерманландии: Ивангорода, Яма, Копорья, Нотеборга», по материалам 1676 г.«Генеральная карта провинции Ингерманландии» Э. Белинга и А. Андерсина, 1704 г., составлена по материалам 1678 г.«Географический чертёж над Ижорскою землей со своими городами» Адриана Шонбека 1705 г.Новая и достоверная всей Ингерманландии ланткарта. Грав. А. Ростовцев. СПб., 1727 г.Топографическая карта Санкт-Петербургской губернии. 5-и верстка. Шуберт. 1834 г.Описание Санкт-Петербургской губернии по уездам и станамСпецкарта западной части России Ф. Ф. Шуберта. 1844 г.Алфавитный список селений по уездам и станам С.-Петербургской губернииСписки населённых мест Российской Империи, составленные и издаваемые центральным статистическим комитетом министерства внутренних дел. XXXVII. Санкт-Петербургская губерния. По состоянию на 1862 год. СПб. 1864. С. 203Материалы по статистике народного хозяйства в С.-Петербургской губернии. Вып. IX. Частновладельческое хозяйство в Ямбургском уезде. СПб, 1888, С. 146, С. 2, 7, 54Положение о гербе муниципального образования Курское сельское поселениеСправочник истории административно-территориального деления Ленинградской области.Топографическая карта Ленинградской области, квадрат О-35-23-В (Хотыницы), 1930 г.АрхивированоАдминистративно-территориальное деление Ленинградской области. — Л., 1933, С. 27, 198АрхивированоАдминистративно-экономический справочник по Ленинградской области. — Л., 1936, с. 219АрхивированоАдминистративно-территориальное деление Ленинградской области. — Л., 1966, с. 175АрхивированоАдминистративно-территориальное деление Ленинградской области. — Лениздат, 1973, С. 180АрхивированоАдминистративно-территориальное деление Ленинградской области. — Лениздат, 1990, ISBN 5-289-00612-5, С. 38АрхивированоАдминистративно-территориальное деление Ленинградской области. — СПб., 2007, с. 60АрхивированоКоряков Юрий База данных «Этно-языковой состав населённых пунктов России». Ленинградская область.Административно-территориальное деление Ленинградской области. — СПб, 1997, ISBN 5-86153-055-6, С. 41АрхивированоКультовый комплекс Старые Смолеговицы // Электронная энциклопедия ЭрмитажаПроблемы выявления, изучения и сохранения культовых комплексов с каменными крестами: по материалам работ 2016-2017 гг. в Ленинградской области