3 "DELETE_SHELF": "Czy na pewno usunąć półkę",
4 "HIDE_DESCRIPTION": "Zwiń opis",
5 "EXPAND DESCRIPTION": "Rozwiń opis",
6 "LOADING": "Ładowanie",
9 "DELETE_SHELF": "Translate me!",
10 "HIDE_DESCRIPTION": "Translate me!",
11 "EXPAND DESCRIPTION": "Translate me!",
12 "LOADING": "Translate me!",
15 "DELETE_SHELF": "Translate me!",
16 "HIDE_DESCRIPTION": "Translate me!",
17 "EXPAND DESCRIPTION": "Translate me!",
18 "LOADING": "Translate me!",
21 "DELETE_SHELF": "Translate me!",
22 "HIDE_DESCRIPTION": "Translate me!",
23 "EXPAND DESCRIPTION": "Translate me!",
24 "LOADING": "Translate me!",
27 "DELETE_SHELF": "Translate me!",
28 "HIDE_DESCRIPTION": "Translate me!",
29 "EXPAND DESCRIPTION": "Translate me!",
30 "LOADING": "Translate me!",
33 "DELETE_SHELF": "Translate me!",
34 "HIDE_DESCRIPTION": "Translate me!",
35 "EXPAND DESCRIPTION": "Translate me!",
36 "LOADING": "Translate me!",
39 "DELETE_SHELF": "Translate me!",
40 "HIDE_DESCRIPTION": "Translate me!",
41 "EXPAND DESCRIPTION": "Translate me!",
42 "LOADING": "Translate me!",
46 'Przekaż 1% żeby ukryć ten baner.',
47 'Jak dobrze wydać 1% swojego podatku? <strong>Poradnik dla opornych</strong>.',
48 'Wiadomość systemowa: wystąpił błąd brak funduszy. Wykonaj procedurę 1%.',
49 '<strong>FREE!</strong> Wygraj darmowe lektury!',
50 'Confidential business offer. Not scam! 1% for you.',
51 'Biblioteka Wolne Lektury wymaga aktualizacji. Kliknij dalej.',
52 '1000 lektur. <strong>1 procent</strong>.',
53 '1% dla biblioteki lektur szkolnych. 1% dla Twojej biblioteki.',
54 '1% na lektury szkolne.',
55 '1% dla wolności lektur szkolnych.',
56 'Podaruj Jeden Procent na rzecz szkolnej biblioteki internetowej.',
57 '1% podatku dla biblioteki szkolnej Wolne Lektury.',
58 '1% na rzecz darmowego dostępu do szkolnych lektur.',
59 'Żeby czytać teksty a nie skany. Przekaż 1%.',
60 'Czytaj teksty a nie skany. Przekaż 1%',
61 'Motyw artysty w literaturze - 47 cytatów. Pomóż znaleźć następne.',
62 'Twój 1% uwolni więcej lektur.',
63 'Ponad 400 motywów, blisko 10 000 000 cytatów. Pomóż znaleźć następne. Przekaż swój 1%.',
64 'Twój 1% uwolni lektury.',
65 'Rozlicz swój PIT z Wolnymi Lekturami. Skorzystaj z darmowego programu do rozliczania podatków.',
66 'Lektury 2010: Pan Tadeusz, Trylogia.',
67 'Pan Tadeusz też chce być w Internecie! Przekaż 1% swojego podatku.',
68 'Pomóż uwolnić 286 utworów z listy lektur szkolnych. Przekaż swój 1% na Wolne Lektury.'
72 function changeBannerText() {
73 var index = Math.floor(Math.random() * BANNER_TEXTS.length);
74 if (BANNER_TEXTS[index] == $('#onepercent-text').html()) {
78 $('#onepercent-text').fadeOut('slow', function() {
79 $(this).html(BANNER_TEXTS[index]);
80 $(this).fadeIn('slow');
83 setTimeout(changeBannerText, 30 * 1000);
87 function autocomplete_result_handler(event, item) {
88 $(event.target).closest('form').submit();
90 function serverTime() {
92 $.ajax({url: '/katalog/zegar/',
93 async: false, dataType: 'text',
94 success: function(text) {
95 time = new Date(text);
96 }, error: function(http, message, exc) {
104 $('form input').labelify({labelledClass: 'blur'});
106 target = $('#login-register-window div.target');
108 $('#show-registration-form').click(function() {
109 $('#login-form').hide();
110 $('#registration-form').show();
113 $('#show-login-form').click(function() {
114 $('#registration-form').hide();
115 $('#login-form').show();
119 $('.fragment-text').each(function() {
120 if ($(this).prev().filter('.fragment-short-text').length) {
122 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
123 function() { $(this).css({background: '#FFF'}); }
125 $(this).fadeOut(function() {
126 $(this).prev().fadeIn();
133 $('.fragment-short-text').click(function() {
134 $(this).fadeOut(function() { $(this).next().fadeIn() });
137 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
138 function() { $(this).css({background: '#FFF'}); }
141 $('.show-all-tags').click(function() {
142 $(this).parent().parent().fadeOut(function() {
143 $(this).next().fadeIn();
148 $('.hide-all-tags').click(function() {
149 $(this).parent().parent().fadeOut(function() {
150 $(this).prev().fadeIn();
155 $('#registration-form').ajaxForm({
157 beforeSubmit: function() {
158 $('#registration-form input[type=submit]')
159 .attr('disabled', 'disabled')
160 .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
162 success: function(response) {
163 if (response.success) {
164 location.reload(true);
166 $('#registration-form span.error').remove();
167 $.each(response.errors, function(id, errors) {
168 $('#id_registration-' + id).before('<span class="error">' + errors[0] + '</span>');
170 $('#registration-form input[type=submit]').removeAttr('disabled');
171 $('#registration-form img').remove();
176 $('#login-form').ajaxForm({
178 beforeSubmit: function() {
179 $('#login-form input[type=submit]')
180 .attr('disabled', 'disabled')
181 .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
183 success: function(response) {
184 if (response.success) {
185 location.reload(true);
187 $('#login-form span.error').remove();
188 $.each(response.errors, function(id, errors) {
189 $('#id_login-' + id).before('<span class="error">' + errors[0] + '</span>');
191 $('#login-form input[type=submit]').removeAttr('disabled');
192 $('#login-form img').remove();
197 $('#login-register-window').jqm({
200 trigger: '.login-register-link',
201 onShow: function(hash) {
202 var offset = $(hash.t).offset();
203 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
204 $('div.header', hash.w).css({width: $(hash.t).width()});
209 $('ul.shelf-list li').hover(function() {
210 $(this).css({background: '#EEE', cursor: 'pointer'});
212 $(this).css({background: 'transparent'});
213 }).click(function() {
214 location.href = $('a.visit-shelf', this).attr('href');
217 $('.delete-shelf').click(function() {
219 var shelf_name = $('.visit-shelf', link.parent()).text();
220 if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+ ' '+ shelf_name + '?')) {
221 $.post(link.attr('href'), function(data, textStatus) {
222 link.parent().remove();
228 $('#user-shelves-window').jqm({
230 target: $('#user-shelves-window div.target')[0],
232 trigger: '#user-shelves-link',
233 onShow: function(hash) {
234 var offset = $(hash.t).offset();
235 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
236 $('div.header', hash.w).css({width: $(hash.t).width()});
239 onLoad: function(hash) {
240 $('form', hash.w).ajaxForm({
241 target: $('#user-shelves-window div.target'),
242 success: function() { setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000) }
245 $('input', hash.w).labelify({labelledClass: 'blur'});
247 $('ul.shelf-list li', hash.w).hover(function() {
248 $(this).css({background: '#EEE', cursor: 'pointer'});
250 $(this).css({background: 'transparent'});
251 }).click(function() {
252 location.href = $('a.visit-shelf', this).attr('href');
255 $('.delete-shelf').click(function() {
257 var shelf_name = $('.visit-shelf', link.parent()).text();
258 if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF'] + ' ' + shelf_name + '?')) {
259 $.post(link.attr('href'), function(data, textStatus) {
260 link.parent().remove();
268 $('#books-list .book').hover(
269 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
270 function() { $(this).css({background: '#FFF'}); }
272 location.href = $('h2 a', this).attr('href');
275 $('#toggle-description').hover(
276 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
277 function() { $(this).css({background: '#EEE'}); }
279 if ($('#description').hasClass('hidden')) {
280 $('#description').slideDown('fast').removeClass('hidden');
281 $.cookie('description-state', 'opened', {path: '/', expires: 30});
282 $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▲');
284 $('#description').slideUp('fast').addClass('hidden');
285 $.cookie('description-state', 'closed', {path: '/', expires: 30});
286 $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▼');
290 var target = $('#set-window div.target');
292 $('#set-window').jqm({
296 trigger: 'a.jqm-trigger',
297 onShow: function(hash) {
298 var offset = $(hash.t).offset();
299 target.html('<p><img src="/static/img/indicator.gif" />'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'</p>');
300 hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() },
301 onLoad: function(hash) {
302 $('form', hash.w).ajaxForm({
304 success: function() { setTimeout(function() { $('#set-window').jqmHide() }, 1000) }
309 $('a.remove-from-shelf').click(function(event) {
310 event.preventDefault();
312 $.post(link.attr('href'), function(data, textStatus) {
313 link.parent().remove();
317 if ($.cookie('description-state') == 'closed') {
318 $('#description').hide().addClass('hidden');
319 $('#toggle-description p').html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_SHELF']+' ▼');
322 $('#user-info').show();
324 $('#onepercent-banner').show();
326 var formatsDownloaded = false;
327 $('#download-shelf').click(function() {
328 $('#download-shelf-menu').slideDown('fast');
330 if (!formatsDownloaded) {
331 // Get info about the formats
332 formatsDownloaded = true;
334 url: $('#download-formats-form').attr('data-formats-feed'),
337 complete: function() {
338 $('#download-formats-form-submit').attr('disabled', null);
339 $('#download-formats-form-submit-li img').remove();
340 $('#updating-formats').fadeOut('fast', function() {
341 $('#formats-updated').fadeIn('fast');
344 success: function(data) {
345 $('#download-formats-form li').each(function() {
347 if (!!item.attr('data-format') && !data[item.attr('data-format')]) {
348 item.fadeOut('fast', function() {
359 $('#download-formats-form-cancel').click(function() {
360 $('#download-shelf-menu').slideUp('fast');